2019-05-29 12:18:04 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Application\Migrations;
|
|
|
|
|
|
|
|
use Doctrine\DBAL\Schema\Schema;
|
2024-02-19 00:30:12 +00:00
|
|
|
use Wallabag\Doctrine\WallabagMigration;
|
2019-05-29 12:18:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Added `given_url` & `hashed_given_url` field in entry table.
|
|
|
|
*/
|
|
|
|
class Version20190601125843 extends WallabagMigration
|
|
|
|
{
|
2022-12-14 13:36:29 +00:00
|
|
|
public function up(Schema $schema): void
|
2019-05-29 12:18:04 +00:00
|
|
|
{
|
|
|
|
$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,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2019-06-05 08:51:06 +00:00
|
|
|
// 40 = length of sha1 field hashed_given_url
|
|
|
|
$entryTable->addIndex(['user_id', 'hashed_given_url'], 'hashed_given_url_user_id', [], ['lengths' => [null, 40]]);
|
2019-05-29 12:18:04 +00:00
|
|
|
}
|
|
|
|
|
2022-12-14 13:36:29 +00:00
|
|
|
public function down(Schema $schema): void
|
2019-05-29 12:18:04 +00:00
|
|
|
{
|
|
|
|
$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');
|
|
|
|
}
|
|
|
|
|
2019-06-05 08:51:06 +00:00
|
|
|
$entryTable->dropIndex('hashed_given_url_user_id');
|
2019-05-29 12:18:04 +00:00
|
|
|
}
|
|
|
|
}
|