diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2017-12-22 11:23:39 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2017-12-22 11:23:39 +0100 |
commit | e2a48a6e82676a47c26b984476840e90976dabf0 (patch) | |
tree | 196573fb5143e09f5da7759444deb0efe415e095 | |
parent | 024e9abf38f4c72566ff37bc0c1a1d3637fe632e (diff) | |
download | wallabag-e2a48a6e82676a47c26b984476840e90976dabf0.tar.gz wallabag-e2a48a6e82676a47c26b984476840e90976dabf0.tar.zst wallabag-e2a48a6e82676a47c26b984476840e90976dabf0.zip |
Removed SQLite migrationstore-resolved-url
-rw-r--r-- | app/DoctrineMigrations/Version20171218135243.php | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/app/DoctrineMigrations/Version20171218135243.php b/app/DoctrineMigrations/Version20171218135243.php index 7b3fc666..f1ab7c1d 100644 --- a/app/DoctrineMigrations/Version20171218135243.php +++ b/app/DoctrineMigrations/Version20171218135243.php | |||
@@ -33,9 +33,6 @@ class Version20171218135243 extends AbstractMigration implements ContainerAwareI | |||
33 | $this->skipIf($entryTable->hasIndex($this->indexGivenUrl), 'It seems that you already played this migration.'); | 33 | $this->skipIf($entryTable->hasIndex($this->indexGivenUrl), 'It seems that you already played this migration.'); |
34 | 34 | ||
35 | switch ($this->connection->getDatabasePlatform()->getName()) { | 35 | switch ($this->connection->getDatabasePlatform()->getName()) { |
36 | case 'sqlite': | ||
37 | $sql = 'CREATE UNIQUE INDEX ' . $this->indexGivenUrl . ' ON ' . $this->getTable('entry') . ' (url, given_url, user_id);'; | ||
38 | break; | ||
39 | case 'mysql': | 36 | case 'mysql': |
40 | $sql = 'CREATE INDEX ' . $this->indexGivenUrl . ' ON ' . $this->getTable('entry') . ' (url (255), given_url (255), user_id);'; | 37 | $sql = 'CREATE INDEX ' . $this->indexGivenUrl . ' ON ' . $this->getTable('entry') . ' (url (255), given_url (255), user_id);'; |
41 | break; | 38 | break; |