aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/DoctrineMigrations/Version20190601125843.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/DoctrineMigrations/Version20190601125843.php')
-rw-r--r--app/DoctrineMigrations/Version20190601125843.php48
1 files changed, 48 insertions, 0 deletions
diff --git a/app/DoctrineMigrations/Version20190601125843.php b/app/DoctrineMigrations/Version20190601125843.php
new file mode 100644
index 00000000..cbb92edc
--- /dev/null
+++ b/app/DoctrineMigrations/Version20190601125843.php
@@ -0,0 +1,48 @@
1<?php
2
3namespace Application\Migrations;
4
5use Doctrine\DBAL\Schema\Schema;
6use Wallabag\CoreBundle\Doctrine\WallabagMigration;
7
8/**
9 * Added `given_url` & `hashed_given_url` field in entry table.
10 */
11class Version20190601125843 extends WallabagMigration
12{
13 public function up(Schema $schema)
14 {
15 $entryTable = $schema->getTable($this->getTable('entry'));
16
17 if (!$entryTable->hasColumn('given_url')) {
18 $entryTable->addColumn('given_url', 'text', [
19 'notnull' => false,
20 ]);
21 }
22
23 if (!$entryTable->hasColumn('hashed_given_url')) {
24 $entryTable->addColumn('hashed_given_url', 'text', [
25 'length' => 40,
26 'notnull' => false,
27 ]);
28 }
29
30 // 40 = length of sha1 field hashed_given_url
31 $entryTable->addIndex(['user_id', 'hashed_given_url'], 'hashed_given_url_user_id', [], ['lengths' => [null, 40]]);
32 }
33
34 public function down(Schema $schema)
35 {
36 $entryTable = $schema->getTable($this->getTable('entry'));
37
38 if ($entryTable->hasColumn('given_url')) {
39 $entryTable->dropColumn('given_url');
40 }
41
42 if ($entryTable->hasColumn('hashed_given_url')) {
43 $entryTable->dropColumn('hashed_given_url');
44 }
45
46 $entryTable->dropIndex('hashed_given_url_user_id');
47 }
48}