diff options
Diffstat (limited to 'app/DoctrineMigrations/Version20180405182455.php')
-rwxr-xr-x | app/DoctrineMigrations/Version20180405182455.php | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/app/DoctrineMigrations/Version20180405182455.php b/app/DoctrineMigrations/Version20180405182455.php new file mode 100755 index 00000000..1b8c3b0e --- /dev/null +++ b/app/DoctrineMigrations/Version20180405182455.php | |||
@@ -0,0 +1,45 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Application\Migrations; | ||
4 | |||
5 | use Doctrine\DBAL\Schema\Schema; | ||
6 | use Wallabag\CoreBundle\Doctrine\WallabagMigration; | ||
7 | |||
8 | /** | ||
9 | * Add archived_at column and set its value to updated_at for is_archived entries. | ||
10 | */ | ||
11 | class Version20180405182455 extends WallabagMigration | ||
12 | { | ||
13 | public function up(Schema $schema) | ||
14 | { | ||
15 | $entryTable = $schema->getTable($this->getTable('entry')); | ||
16 | |||
17 | $this->skipIf($entryTable->hasColumn('archived_at'), 'It seems that you already played this migration.'); | ||
18 | |||
19 | $entryTable->addColumn('archived_at', 'datetime', [ | ||
20 | 'notnull' => false, | ||
21 | ]); | ||
22 | } | ||
23 | |||
24 | public function postUp(Schema $schema) | ||
25 | { | ||
26 | $entryTable = $schema->getTable($this->getTable('entry')); | ||
27 | $this->skipIf(!$entryTable->hasColumn('archived_at'), 'Unable to add archived_at colum'); | ||
28 | |||
29 | $this->connection->executeQuery( | ||
30 | 'UPDATE ' . $this->getTable('entry') . ' SET archived_at = updated_at WHERE is_archived = :is_archived', | ||
31 | [ | ||
32 | 'is_archived' => true, | ||
33 | ] | ||
34 | ); | ||
35 | } | ||
36 | |||
37 | public function down(Schema $schema) | ||
38 | { | ||
39 | $entryTable = $schema->getTable($this->getTable('entry')); | ||
40 | |||
41 | $this->skipIf(!$entryTable->hasColumn('archived_at'), 'It seems that you already played this migration.'); | ||
42 | |||
43 | $entryTable->dropColumn('archived_at'); | ||
44 | } | ||
45 | } | ||