2019-04-01 09:50:33 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Application\Migrations;
|
|
|
|
|
|
|
|
use Doctrine\DBAL\Schema\Schema;
|
2024-02-19 00:30:12 +00:00
|
|
|
use Wallabag\Doctrine\WallabagMigration;
|
2019-04-01 09:50:33 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Add hashed_url in entry.
|
|
|
|
*/
|
|
|
|
class Version20190401105353 extends WallabagMigration
|
|
|
|
{
|
2022-12-14 13:36:29 +00:00
|
|
|
public function up(Schema $schema): void
|
2019-04-01 09:50:33 +00:00
|
|
|
{
|
|
|
|
$entryTable = $schema->getTable($this->getTable('entry'));
|
|
|
|
|
|
|
|
$this->skipIf($entryTable->hasColumn('hashed_url'), 'It seems that you already played this migration.');
|
|
|
|
|
|
|
|
$entryTable->addColumn('hashed_url', 'text', [
|
2019-04-01 11:51:57 +00:00
|
|
|
'length' => 40,
|
2019-04-01 09:50:33 +00:00
|
|
|
'notnull' => false,
|
|
|
|
]);
|
|
|
|
|
2019-04-01 13:45:17 +00:00
|
|
|
$entryTable->addIndex(['user_id', 'hashed_url'], 'hashed_url_user_id', [], ['lengths' => [null, 40]]);
|
2019-04-01 09:50:33 +00:00
|
|
|
}
|
|
|
|
|
2022-12-14 13:36:29 +00:00
|
|
|
public function down(Schema $schema): void
|
2019-04-01 09:50:33 +00:00
|
|
|
{
|
|
|
|
$entryTable = $schema->getTable($this->getTable('entry'));
|
|
|
|
|
|
|
|
$this->skipIf(!$entryTable->hasColumn('hashed_url'), 'It seems that you already played this migration.');
|
|
|
|
|
2019-04-01 11:51:57 +00:00
|
|
|
$entryTable->dropIndex('hashed_url_user_id');
|
2019-04-01 09:50:33 +00:00
|
|
|
$entryTable->dropColumn('hashed_url');
|
|
|
|
}
|
|
|
|
}
|