]> git.immae.eu Git - github/wallabag/wallabag.git/blame - app/DoctrineMigrations/Version20161122203647.php
Added hardcoded SQL for migration to 2.2
[github/wallabag/wallabag.git] / app / DoctrineMigrations / Version20161122203647.php
CommitLineData
be2725db
JB
1<?php
2
3namespace Application\Migrations;
4
5use Doctrine\DBAL\Migrations\AbstractMigration;
6use Doctrine\DBAL\Schema\Schema;
7use Symfony\Component\DependencyInjection\ContainerAwareInterface;
8use Symfony\Component\DependencyInjection\ContainerInterface;
9
10/**
18d7bc3a 11 * Methods and properties removed from `FOS\UserBundle\Model\User`.
be2725db
JB
12 *
13 * - `$expired`
14 * - `$credentialsExpired`
15 * - `setExpired()` (use `setExpiresAt(\DateTime::now()` instead)
16 * - `setCredentialsExpired()` (use `setCredentialsExpireAt(\DateTime::now()` instead)
17 *
18 * You need to drop the fields `expired` and `credentials_expired` from your database
19 * schema, because they aren't mapped anymore.
20 */
21class Version20161122203647 extends AbstractMigration implements ContainerAwareInterface
22{
23 /**
24 * @var ContainerInterface
25 */
26 private $container;
27
28 public function setContainer(ContainerInterface $container = null)
29 {
30 $this->container = $container;
31 }
32
33 private function getTable($tableName)
34 {
18d7bc3a 35 return $this->container->getParameter('database_table_prefix').$tableName;
be2725db
JB
36 }
37
38 /**
39 * @param Schema $schema
40 */
41 public function up(Schema $schema)
42 {
84c6a48d 43 $userTable = $schema->getTable($this->getTable('user'));
be2725db 44
65a8c6e1 45 $this->skipIf(false === $userTable->hasColumn('expired') || false === $userTable->hasColumn('credentials_expired'), 'It seems that you already played this migration.');
18d7bc3a 46
84c6a48d 47 $userTable->dropColumn('expired');
84c6a48d 48 $userTable->dropColumn('credentials_expired');
be2725db
JB
49 }
50
51 /**
52 * @param Schema $schema
53 */
54 public function down(Schema $schema)
55 {
84c6a48d 56 $userTable = $schema->getTable($this->getTable('user'));
4acbeb93
NL
57
58 $this->skipIf(true === $userTable->hasColumn('expired') || true === $userTable->hasColumn('credentials_expired'), 'It seems that you already played this migration.');
59
60 $userTable->addColumn('expired', 'smallint', ['notnull' => false]);
61 $userTable->addColumn('credentials_expired', 'smallint', ['notnull' => false]);
be2725db
JB
62 }
63}