aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/DoctrineMigrations/Version20190601125843.php
blob: cbb92edc98ce5e223049353c4ebf16b29dc648b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php

namespace Application\Migrations;

use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;

/**
 * Added `given_url` & `hashed_given_url` field in entry table.
 */
class Version20190601125843 extends WallabagMigration
{
    public function up(Schema $schema)
    {
        $entryTable = $schema->getTable($this->getTable('entry'));

        if (!$entryTable->hasColumn('given_url')) {
            $entryTable->addColumn('given_url', 'text', [
                'notnull' => false,
            ]);
        }

        if (!$entryTable->hasColumn('hashed_given_url')) {
            $entryTable->addColumn('hashed_given_url', 'text', [
                'length' => 40,
                'notnull' => false,
            ]);
        }

        // 40 = length of sha1 field hashed_given_url
        $entryTable->addIndex(['user_id', 'hashed_given_url'], 'hashed_given_url_user_id', [], ['lengths' => [null, 40]]);
    }

    public function down(Schema $schema)
    {
        $entryTable = $schema->getTable($this->getTable('entry'));

        if ($entryTable->hasColumn('given_url')) {
            $entryTable->dropColumn('given_url');
        }

        if ($entryTable->hasColumn('hashed_given_url')) {
            $entryTable->dropColumn('hashed_given_url');
        }

        $entryTable->dropIndex('hashed_given_url_user_id');
    }
}