]> git.immae.eu Git - github/wallabag/wallabag.git/blob - app/DoctrineMigrations/Version20161128131503.php
Merge pull request #4151 from ldidry/fix-4060
[github/wallabag/wallabag.git] / app / DoctrineMigrations / Version20161128131503.php
1 <?php
2
3 namespace Application\Migrations;
4
5 use Doctrine\DBAL\Schema\Schema;
6 use Wallabag\CoreBundle\Doctrine\WallabagMigration;
7
8 /**
9 * Removed locked, credentials_expire_at and expires_at.
10 */
11 class Version20161128131503 extends WallabagMigration
12 {
13 private $fields = [
14 'locked' => 'smallint',
15 'credentials_expire_at' => 'datetime',
16 'expires_at' => 'datetime',
17 ];
18
19 public function up(Schema $schema)
20 {
21 $userTable = $schema->getTable($this->getTable('user'));
22
23 foreach ($this->fields as $field => $type) {
24 $this->skipIf(!$userTable->hasColumn($field), 'It seems that you already played this migration.');
25 $userTable->dropColumn($field);
26 }
27 }
28
29 public function down(Schema $schema)
30 {
31 $userTable = $schema->getTable($this->getTable('user'));
32
33 foreach ($this->fields as $field => $type) {
34 $this->skipIf($userTable->hasColumn($field), 'It seems that you already played this migration.');
35 $userTable->addColumn($field, $type, ['notnull' => false]);
36 }
37 }
38 }