2016-12-04 12:51:58 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Application\Migrations;
|
|
|
|
|
2023-08-05 17:35:09 +00:00
|
|
|
use Doctrine\DBAL\Platforms\PostgreSQLPlatform;
|
2016-12-04 12:51:58 +00:00
|
|
|
use Doctrine\DBAL\Schema\Schema;
|
2024-02-19 00:30:12 +00:00
|
|
|
use Wallabag\Doctrine\WallabagMigration;
|
2016-12-04 12:51:58 +00:00
|
|
|
|
|
|
|
/**
|
2017-07-01 07:52:38 +00:00
|
|
|
* Add site credential table to store username & password for some website (behind authentication or paywall).
|
2016-12-04 12:51:58 +00:00
|
|
|
*/
|
2018-06-14 11:43:09 +00:00
|
|
|
class Version20170501115751 extends WallabagMigration
|
2016-12-04 12:51:58 +00:00
|
|
|
{
|
2022-12-14 13:36:29 +00:00
|
|
|
public function up(Schema $schema): void
|
2016-12-04 12:51:58 +00:00
|
|
|
{
|
|
|
|
$this->skipIf($schema->hasTable($this->getTable('site_credential')), 'It seems that you already played this migration.');
|
|
|
|
|
|
|
|
$table = $schema->createTable($this->getTable('site_credential'));
|
|
|
|
$table->addColumn('id', 'integer', ['autoincrement' => true]);
|
|
|
|
$table->addColumn('user_id', 'integer');
|
|
|
|
$table->addColumn('host', 'string', ['length' => 255]);
|
2017-06-14 13:02:34 +00:00
|
|
|
$table->addColumn('username', 'text');
|
2017-06-11 21:05:19 +00:00
|
|
|
$table->addColumn('password', 'text');
|
2016-12-04 12:51:58 +00:00
|
|
|
$table->addColumn('createdAt', 'datetime');
|
|
|
|
$table->addIndex(['user_id'], 'idx_user');
|
|
|
|
$table->setPrimaryKey(['id']);
|
|
|
|
$table->addForeignKeyConstraint($this->getTable('user'), ['user_id'], ['id'], [], 'fk_user');
|
2017-05-02 06:38:22 +00:00
|
|
|
|
2023-08-05 17:35:09 +00:00
|
|
|
if ($this->connection->getDatabasePlatform() instanceof PostgreSQLPlatform) {
|
2017-05-02 06:38:22 +00:00
|
|
|
$schema->dropSequence('site_credential_id_seq');
|
|
|
|
$schema->createSequence('site_credential_id_seq');
|
|
|
|
}
|
2016-12-04 12:51:58 +00:00
|
|
|
}
|
|
|
|
|
2022-12-14 13:36:29 +00:00
|
|
|
public function down(Schema $schema): void
|
2016-12-04 12:51:58 +00:00
|
|
|
{
|
|
|
|
$schema->dropTable($this->getTable('site_credential'));
|
|
|
|
}
|
|
|
|
}
|