]> git.immae.eu Git - github/wallabag/wallabag.git/blob - app/DoctrineMigrations/Version20160812120952.php
d28f3a71d0728eca50b92c83bba90506d26b1ddf
[github/wallabag/wallabag.git] / app / DoctrineMigrations / Version20160812120952.php
1 <?php
2
3 namespace Application\Migrations;
4
5 use Doctrine\DBAL\Migrations\AbstractMigration;
6 use Doctrine\DBAL\Schema\Schema;
7 use Symfony\Component\DependencyInjection\ContainerAwareInterface;
8 use Symfony\Component\DependencyInjection\ContainerInterface;
9
10 /**
11 * Added name field on wallabag_oauth2_clients.
12 */
13 class Version20160812120952 extends AbstractMigration implements ContainerAwareInterface
14 {
15 /**
16 * @var ContainerInterface
17 */
18 private $container;
19
20 public function setContainer(ContainerInterface $container = null)
21 {
22 $this->container = $container;
23 }
24
25 /**
26 * @param Schema $schema
27 */
28 public function up(Schema $schema)
29 {
30 $clientsTable = $schema->getTable($this->getTable('oauth2_clients'));
31 $this->skipIf($clientsTable->hasColumn('name'), 'It seems that you already played this migration.');
32
33 if ('sqlite' === $this->connection->getDatabasePlatform()->getName()) {
34 // Can't use $clientsTable->addColumn('name', 'blob');
35 // because of the error:
36 // SQLSTATE[HY000]: General error: 1 Cannot add a NOT NULL column with default value NULL
37 $databaseTablePrefix = $this->container->getParameter('database_table_prefix');
38 $this->addSql('CREATE TEMPORARY TABLE __temp__' . $databaseTablePrefix . 'oauth2_clients AS SELECT id, random_id, redirect_uris, secret, allowed_grant_types FROM ' . $databaseTablePrefix . 'oauth2_clients');
39 $this->addSql('DROP TABLE ' . $databaseTablePrefix . 'oauth2_clients');
40 $this->addSql('CREATE TABLE ' . $databaseTablePrefix . 'oauth2_clients (id INTEGER NOT NULL, user_id INTEGER DEFAULT NULL, random_id VARCHAR(255) NOT NULL COLLATE BINARY, secret VARCHAR(255) NOT NULL COLLATE BINARY, redirect_uris CLOB NOT NULL, allowed_grant_types CLOB NOT NULL, name CLOB NOT NULL, PRIMARY KEY(id), CONSTRAINT FK_635D765EA76ED395 FOREIGN KEY (user_id) REFERENCES "' . $databaseTablePrefix . 'user" (id) NOT DEFERRABLE INITIALLY IMMEDIATE)');
41 $this->addSql('INSERT INTO ' . $databaseTablePrefix . 'oauth2_clients (id, random_id, redirect_uris, secret, allowed_grant_types) SELECT id, random_id, redirect_uris, secret, allowed_grant_types FROM __temp__' . $databaseTablePrefix . 'oauth2_clients');
42 $this->addSql('DROP TABLE __temp__' . $databaseTablePrefix . 'oauth2_clients');
43 $this->addSql('CREATE INDEX IDX_635D765EA76ED395 ON ' . $databaseTablePrefix . 'oauth2_clients (user_id)');
44 } else {
45 $clientsTable->addColumn('name', 'blob');
46 }
47 }
48
49 /**
50 * @param Schema $schema
51 */
52 public function down(Schema $schema)
53 {
54 $clientsTable = $schema->getTable($this->getTable('oauth2_clients'));
55
56 if ('sqlite' === $this->connection->getDatabasePlatform()->getName()) {
57 $databaseTablePrefix = $this->container->getParameter('database_table_prefix');
58 $this->addSql('DROP INDEX IDX_635D765EA76ED395');
59 $this->addSql('CREATE TEMPORARY TABLE __temp__' . $databaseTablePrefix . 'oauth2_clients AS SELECT id, random_id, redirect_uris, secret, allowed_grant_types FROM ' . $databaseTablePrefix . 'oauth2_clients');
60 $this->addSql('DROP TABLE ' . $databaseTablePrefix . 'oauth2_clients');
61 $this->addSql('CREATE TABLE ' . $databaseTablePrefix . 'oauth2_clients (id INTEGER NOT NULL, random_id VARCHAR(255) NOT NULL, secret VARCHAR(255) NOT NULL, redirect_uris CLOB NOT NULL COLLATE BINARY, allowed_grant_types CLOB NOT NULL COLLATE BINARY, PRIMARY KEY(id))');
62 $this->addSql('INSERT INTO ' . $databaseTablePrefix . 'oauth2_clients (id, random_id, redirect_uris, secret, allowed_grant_types) SELECT id, random_id, redirect_uris, secret, allowed_grant_types FROM __temp__' . $databaseTablePrefix . 'oauth2_clients');
63 $this->addSql('DROP TABLE __temp__' . $databaseTablePrefix . 'oauth2_clients');
64 } else {
65 $clientsTable->dropColumn('name');
66 }
67 }
68
69 private function getTable($tableName)
70 {
71 return $this->container->getParameter('database_table_prefix') . $tableName;
72 }
73 }