Created script to update an already existing system

This commit is contained in:
Alejandro Celaya
2016-08-19 15:50:08 +02:00
parent ea083e30b6
commit 5f0baab2ac
6 changed files with 45 additions and 16 deletions

View File

@@ -0,0 +1,12 @@
<?php
namespace Shlinkio\Shlink\CLI\Command\Install;
use Zend\Config\Writer\WriterInterface;
class UpdateCommand extends InstallCommand
{
public function createDatabase()
{
return true;
}
}