]>
Commit | Line | Data |
---|---|---|
1 | <?php | |
2 | ||
3 | namespace Application\Migrations; | |
4 | ||
5 | use Doctrine\DBAL\Schema\Schema; | |
6 | use Wallabag\CoreBundle\Doctrine\WallabagMigration; | |
7 | ||
8 | /** | |
9 | * Added name field on wallabag_oauth2_clients. | |
10 | */ | |
11 | class Version20160812120952 extends WallabagMigration | |
12 | { | |
13 | /** | |
14 | * @param Schema $schema | |
15 | */ | |
16 | public function up(Schema $schema) | |
17 | { | |
18 | $clientsTable = $schema->getTable($this->getTable('oauth2_clients')); | |
19 | $this->skipIf($clientsTable->hasColumn('name'), 'It seems that you already played this migration.'); | |
20 | ||
21 | if ('sqlite' === $this->connection->getDatabasePlatform()->getName()) { | |
22 | // Can't use $clientsTable->addColumn('name', 'blob'); | |
23 | // because of the error: | |
24 | // SQLSTATE[HY000]: General error: 1 Cannot add a NOT NULL column with default value NULL | |
25 | $databaseTablePrefix = $this->container->getParameter('database_table_prefix'); | |
26 | $this->addSql('CREATE TEMPORARY TABLE __temp__' . $databaseTablePrefix . 'oauth2_clients AS SELECT id, random_id, redirect_uris, secret, allowed_grant_types FROM ' . $databaseTablePrefix . 'oauth2_clients'); | |
27 | $this->addSql('DROP TABLE ' . $databaseTablePrefix . 'oauth2_clients'); | |
28 | $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)'); | |
29 | $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'); | |
30 | $this->addSql('DROP TABLE __temp__' . $databaseTablePrefix . 'oauth2_clients'); | |
31 | $this->addSql('CREATE INDEX IDX_635D765EA76ED395 ON ' . $databaseTablePrefix . 'oauth2_clients (user_id)'); | |
32 | } else { | |
33 | $clientsTable->addColumn('name', 'blob'); | |
34 | } | |
35 | } | |
36 | ||
37 | /** | |
38 | * @param Schema $schema | |
39 | */ | |
40 | public function down(Schema $schema) | |
41 | { | |
42 | $clientsTable = $schema->getTable($this->getTable('oauth2_clients')); | |
43 | ||
44 | if ('sqlite' === $this->connection->getDatabasePlatform()->getName()) { | |
45 | $databaseTablePrefix = $this->container->getParameter('database_table_prefix'); | |
46 | $this->addSql('DROP INDEX IDX_635D765EA76ED395'); | |
47 | $this->addSql('CREATE TEMPORARY TABLE __temp__' . $databaseTablePrefix . 'oauth2_clients AS SELECT id, random_id, redirect_uris, secret, allowed_grant_types FROM ' . $databaseTablePrefix . 'oauth2_clients'); | |
48 | $this->addSql('DROP TABLE ' . $databaseTablePrefix . 'oauth2_clients'); | |
49 | $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))'); | |
50 | $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'); | |
51 | $this->addSql('DROP TABLE __temp__' . $databaseTablePrefix . 'oauth2_clients'); | |
52 | } else { | |
53 | $clientsTable->dropColumn('name'); | |
54 | } | |
55 | } | |
56 | } |