wallabag/app/DoctrineMigrations/Version20170501115751.php

39 lines
1.4 KiB
PHP
Raw Normal View History

2016-12-04 12:51:58 +00:00
<?php
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\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
*/
class Version20170501115751 extends WallabagMigration
2016-12-04 12:51:58 +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]);
$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
if ('postgresql' === $this->connection->getDatabasePlatform()->getName()) {
$schema->dropSequence('site_credential_id_seq');
$schema->createSequence('site_credential_id_seq');
}
2016-12-04 12:51:58 +00:00
}
public function down(Schema $schema): void
2016-12-04 12:51:58 +00:00
{
$schema->dropTable($this->getTable('site_credential'));
}
}