diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2016-11-17 08:05:15 +0100 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2016-11-17 08:05:15 +0100 |
commit | 9e2440fe15633532c2bf62feac1535a85d6eb840 (patch) | |
tree | 756e3b340815a321c10aacaab2a6d03046a53b9a /app/DoctrineMigrations/Version20161106113822.php | |
parent | e6b133c60cc07e750ed38a1610ec30d3cd8d3189 (diff) | |
download | wallabag-9e2440fe15633532c2bf62feac1535a85d6eb840.tar.gz wallabag-9e2440fe15633532c2bf62feac1535a85d6eb840.tar.zst wallabag-9e2440fe15633532c2bf62feac1535a85d6eb840.zip |
Fix migration
Diffstat (limited to 'app/DoctrineMigrations/Version20161106113822.php')
-rw-r--r-- | app/DoctrineMigrations/Version20161106113822.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/app/DoctrineMigrations/Version20161106113822.php b/app/DoctrineMigrations/Version20161106113822.php index 41e64a4a..edca54f5 100644 --- a/app/DoctrineMigrations/Version20161106113822.php +++ b/app/DoctrineMigrations/Version20161106113822.php | |||
@@ -4,8 +4,10 @@ namespace Application\Migrations; | |||
4 | 4 | ||
5 | use Doctrine\DBAL\Migrations\AbstractMigration; | 5 | use Doctrine\DBAL\Migrations\AbstractMigration; |
6 | use Doctrine\DBAL\Schema\Schema; | 6 | use Doctrine\DBAL\Schema\Schema; |
7 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; | ||
8 | use Symfony\Component\DependencyInjection\ContainerInterface; | ||
7 | 9 | ||
8 | class Version20161106113822 extends AbstractMigration | 10 | class Version20161106113822 extends AbstractMigration implements ContainerAwareInterface |
9 | { | 11 | { |
10 | /** | 12 | /** |
11 | * @var ContainerInterface | 13 | * @var ContainerInterface |
@@ -27,7 +29,7 @@ class Version20161106113822 extends AbstractMigration | |||
27 | */ | 29 | */ |
28 | public function up(Schema $schema) | 30 | public function up(Schema $schema) |
29 | { | 31 | { |
30 | $this->addSql('ALTER TABLE "'.$this->getTable('config').'" ADD action_mark_as_read INT DEFAULT 0'); | 32 | $this->addSql('ALTER TABLE '.$this->getTable('config').' ADD action_mark_as_read INT DEFAULT 0'); |
31 | } | 33 | } |
32 | 34 | ||
33 | /** | 35 | /** |
@@ -37,6 +39,6 @@ class Version20161106113822 extends AbstractMigration | |||
37 | { | 39 | { |
38 | $this->abortIf($this->connection->getDatabasePlatform()->getName() != 'sqlite', 'This down migration can\'t be executed on SQLite databases, because SQLite don\'t support DROP COLUMN.'); | 40 | $this->abortIf($this->connection->getDatabasePlatform()->getName() != 'sqlite', 'This down migration can\'t be executed on SQLite databases, because SQLite don\'t support DROP COLUMN.'); |
39 | 41 | ||
40 | $this->addSql('ALTER TABLE "'.$this->getTable('config').'" DROP action_mark_as_read'); | 42 | $this->addSql('ALTER TABLE '.$this->getTable('config').' DROP action_mark_as_read'); |
41 | } | 43 | } |
42 | } | 44 | } |