aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/DoctrineMigrations/Version20170127093841.php
diff options
context:
space:
mode:
authorJérémy Benoist <j0k3r@users.noreply.github.com>2019-11-14 15:19:18 +0100
committerGitHub <noreply@github.com>2019-11-14 15:19:18 +0100
commit98d8e0c1b929a198da0fbcbffbc011e985b5df01 (patch)
treed7278a13dce4e6dcb253f124420e93ad5069df5e /app/DoctrineMigrations/Version20170127093841.php
parent8d8d6818fb6b6bc2f4140285a2a53c74e38bc010 (diff)
parent4a31f3b6a22b29bee5295aa3099fff79d137a00c (diff)
downloadwallabag-98d8e0c1b929a198da0fbcbffbc011e985b5df01.tar.gz
wallabag-98d8e0c1b929a198da0fbcbffbc011e985b5df01.tar.zst
wallabag-98d8e0c1b929a198da0fbcbffbc011e985b5df01.zip
Merge pull request #4183 from wallabag/update-deps
Update deps
Diffstat (limited to 'app/DoctrineMigrations/Version20170127093841.php')
-rw-r--r--app/DoctrineMigrations/Version20170127093841.php6
1 files changed, 0 insertions, 6 deletions
diff --git a/app/DoctrineMigrations/Version20170127093841.php b/app/DoctrineMigrations/Version20170127093841.php
index 491b9383..d8eb34e5 100644
--- a/app/DoctrineMigrations/Version20170127093841.php
+++ b/app/DoctrineMigrations/Version20170127093841.php
@@ -13,9 +13,6 @@ class Version20170127093841 extends WallabagMigration
13 private $indexStarredName = 'IDX_entry_starred'; 13 private $indexStarredName = 'IDX_entry_starred';
14 private $indexArchivedName = 'IDX_entry_archived'; 14 private $indexArchivedName = 'IDX_entry_archived';
15 15
16 /**
17 * @param Schema $schema
18 */
19 public function up(Schema $schema) 16 public function up(Schema $schema)
20 { 17 {
21 $entryTable = $schema->getTable($this->getTable('entry')); 18 $entryTable = $schema->getTable($this->getTable('entry'));
@@ -25,9 +22,6 @@ class Version20170127093841 extends WallabagMigration
25 $entryTable->addIndex(['is_archived'], $this->indexArchivedName); 22 $entryTable->addIndex(['is_archived'], $this->indexArchivedName);
26 } 23 }
27 24
28 /**
29 * @param Schema $schema
30 */
31 public function down(Schema $schema) 25 public function down(Schema $schema)
32 { 26 {
33 $entryTable = $schema->getTable($this->getTable('entry')); 27 $entryTable = $schema->getTable($this->getTable('entry'));