aboutsummaryrefslogtreecommitdiffhomepage
path: root/app
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2017-01-25 12:59:04 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2017-01-25 12:59:04 +0100
commit6dfd1a6c78a851cb044a7a7d3d7a3328bacec13c (patch)
treef776df1da182dc052dd64adafb30159da5e79f95 /app
parent5ed503ab28b912bb0427dbe68c02dd831b397001 (diff)
downloadwallabag-6dfd1a6c78a851cb044a7a7d3d7a3328bacec13c.tar.gz
wallabag-6dfd1a6c78a851cb044a7a7d3d7a3328bacec13c.tar.zst
wallabag-6dfd1a6c78a851cb044a7a7d3d7a3328bacec13c.zip
Added migration for SQLite
Diffstat (limited to 'app')
-rw-r--r--app/DoctrineMigrations/Version20161214094402.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/app/DoctrineMigrations/Version20161214094402.php b/app/DoctrineMigrations/Version20161214094402.php
index 3a09c29e..db125f76 100644
--- a/app/DoctrineMigrations/Version20161214094402.php
+++ b/app/DoctrineMigrations/Version20161214094402.php
@@ -38,7 +38,11 @@ class Version20161214094402 extends AbstractMigration implements ContainerAwareI
38 38
39 switch ($this->connection->getDatabasePlatform()->getName()) { 39 switch ($this->connection->getDatabasePlatform()->getName()) {
40 case 'sqlite': 40 case 'sqlite':
41 // 41 $this->addSql('CREATE TEMPORARY TABLE __temp__wallabag_entry AS SELECT id, user_id, uuid, title, url, is_archived, is_starred, content, created_at, updated_at, mimetype, language, reading_time, domain_name, preview_picture, is_public FROM '.$this->getTable('entry'));
42 $this->addSql('DROP TABLE '.$this->getTable('entry'));
43 $this->addSql('CREATE TABLE '.$this->getTable('entry').' (id INTEGER NOT NULL, user_id INTEGER DEFAULT NULL, uid CLOB DEFAULT NULL COLLATE BINARY, title CLOB DEFAULT NULL COLLATE BINARY, url CLOB DEFAULT NULL COLLATE BINARY, is_archived BOOLEAN NOT NULL, is_starred BOOLEAN NOT NULL, content CLOB DEFAULT NULL COLLATE BINARY, created_at DATETIME NOT NULL, updated_at DATETIME NOT NULL, mimetype CLOB DEFAULT NULL COLLATE BINARY, language CLOB DEFAULT NULL COLLATE BINARY, reading_time INTEGER DEFAULT NULL, domain_name CLOB DEFAULT NULL COLLATE BINARY, preview_picture CLOB DEFAULT NULL COLLATE BINARY, is_public BOOLEAN DEFAULT "0", PRIMARY KEY(id));');
44 $this->addSql('INSERT INTO '.$this->getTable('entry').' (id, user_id, uid, title, url, is_archived, is_starred, content, created_at, updated_at, mimetype, language, reading_time, domain_name, preview_picture, is_public) SELECT id, user_id, uuid, title, url, is_archived, is_starred, content, created_at, updated_at, mimetype, language, reading_time, domain_name, preview_picture, is_public FROM __temp__wallabag_entry;');
45 $this->addSql('DROP TABLE __temp__wallabag_entry');
42 break; 46 break;
43 case 'mysql': 47 case 'mysql':
44 $this->addSql('ALTER TABLE '.$this->getTable('entry').' CHANGE uuid uid VARCHAR(23)'); 48 $this->addSql('ALTER TABLE '.$this->getTable('entry').' CHANGE uuid uid VARCHAR(23)');
@@ -59,7 +63,7 @@ class Version20161214094402 extends AbstractMigration implements ContainerAwareI
59 63
60 switch ($this->connection->getDatabasePlatform()->getName()) { 64 switch ($this->connection->getDatabasePlatform()->getName()) {
61 case 'sqlite': 65 case 'sqlite':
62 // 66 throw new SkipMigrationException('Too complex ...');
63 break; 67 break;
64 case 'mysql': 68 case 'mysql':
65 $this->addSql('ALTER TABLE '.$this->getTable('entry').' CHANGE uid uuid VARCHAR(23)'); 69 $this->addSql('ALTER TABLE '.$this->getTable('entry').' CHANGE uid uuid VARCHAR(23)');