2016-12-04 13:51:58 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Application\Migrations;
|
|
|
|
|
2023-08-05 19:35:09 +02:00
|
|
|
use Doctrine\DBAL\Platforms\PostgreSQLPlatform;
|
2016-12-04 13:51:58 +01:00
|
|
|
use Doctrine\DBAL\Schema\Schema;
|
2024-02-19 01:30:12 +01:00
|
|
|
use Wallabag\Doctrine\WallabagMigration;
|
2016-12-04 13:51:58 +01:00
|
|
|
|
|
|
|
/**
|
2017-07-01 09:52:38 +02:00
|
|
|
* Add site credential table to store username & password for some website (behind authentication or paywall).
|
2016-12-04 13:51:58 +01:00
|
|
|
*/
|
2018-06-14 13:43:09 +02:00
|
|
|
class Version20170501115751 extends WallabagMigration
|
2016-12-04 13:51:58 +01:00
|
|
|
{
|
2022-12-14 14:36:29 +01:00
|
|
|
public function up(Schema $schema): void
|
2016-12-04 13:51:58 +01: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 15:02:34 +02:00
|
|
|
$table->addColumn('username', 'text');
|
2017-06-11 23:05:19 +02:00
|
|
|
$table->addColumn('password', 'text');
|
2016-12-04 13:51:58 +01: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 08:38:22 +02:00
|
|
|
|
2023-08-05 19:35:09 +02:00
|
|
|
if ($this->connection->getDatabasePlatform() instanceof PostgreSQLPlatform) {
|
2017-05-02 08:38:22 +02:00
|
|
|
$schema->dropSequence('site_credential_id_seq');
|
|
|
|
$schema->createSequence('site_credential_id_seq');
|
|
|
|
}
|
2016-12-04 13:51:58 +01:00
|
|
|
}
|
|
|
|
|
2022-12-14 14:36:29 +01:00
|
|
|
public function down(Schema $schema): void
|
2016-12-04 13:51:58 +01:00
|
|
|
{
|
|
|
|
$schema->dropTable($this->getTable('site_credential'));
|
|
|
|
}
|
|
|
|
}
|