2018-04-11 09:42:52 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Application\Migrations;
|
|
|
|
|
|
|
|
use Doctrine\DBAL\Schema\Schema;
|
2024-02-19 00:30:12 +00:00
|
|
|
use Wallabag\Doctrine\WallabagMigration;
|
2018-04-11 09:42:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Add archived_at column and set its value to updated_at for is_archived entries.
|
|
|
|
*/
|
2018-11-28 19:26:18 +00:00
|
|
|
class Version20180405182455 extends WallabagMigration
|
2018-04-11 09:42:52 +00:00
|
|
|
{
|
2022-12-14 13:36:29 +00:00
|
|
|
public function up(Schema $schema): void
|
2018-04-11 09:42:52 +00:00
|
|
|
{
|
|
|
|
$entryTable = $schema->getTable($this->getTable('entry'));
|
|
|
|
|
|
|
|
$this->skipIf($entryTable->hasColumn('archived_at'), 'It seems that you already played this migration.');
|
|
|
|
|
|
|
|
$entryTable->addColumn('archived_at', 'datetime', [
|
|
|
|
'notnull' => false,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2022-12-14 13:36:29 +00:00
|
|
|
public function postUp(Schema $schema): void
|
2018-04-11 09:42:52 +00:00
|
|
|
{
|
|
|
|
$entryTable = $schema->getTable($this->getTable('entry'));
|
|
|
|
$this->skipIf(!$entryTable->hasColumn('archived_at'), 'Unable to add archived_at colum');
|
|
|
|
|
|
|
|
$this->connection->executeQuery(
|
|
|
|
'UPDATE ' . $this->getTable('entry') . ' SET archived_at = updated_at WHERE is_archived = :is_archived',
|
|
|
|
[
|
|
|
|
'is_archived' => true,
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-12-14 13:36:29 +00:00
|
|
|
public function down(Schema $schema): void
|
2018-04-11 09:42:52 +00:00
|
|
|
{
|
|
|
|
$entryTable = $schema->getTable($this->getTable('entry'));
|
|
|
|
|
|
|
|
$this->skipIf(!$entryTable->hasColumn('archived_at'), 'It seems that you already played this migration.');
|
|
|
|
|
|
|
|
$entryTable->dropColumn('archived_at');
|
|
|
|
}
|
|
|
|
}
|