wallabag/app/DoctrineMigrations/Version20170501115751.php

62 lines
2 KiB
PHP
Raw Normal View History

2016-12-04 12:51:58 +00:00
<?php
namespace Application\Migrations;
use Doctrine\DBAL\Migrations\AbstractMigration;
use Doctrine\DBAL\Schema\Schema;
use Symfony\Component\DependencyInjection\ContainerAwareInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
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
*/
2017-05-02 06:38:22 +00:00
class Version20170501115751 extends AbstractMigration implements ContainerAwareInterface
2016-12-04 12:51:58 +00:00
{
/**
* @var ContainerInterface
*/
private $container;
public function setContainer(ContainerInterface $container = null)
{
$this->container = $container;
}
/**
* @param Schema $schema
*/
public function up(Schema $schema)
{
$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
}
/**
* @param Schema $schema
*/
public function down(Schema $schema)
{
$schema->dropTable($this->getTable('site_credential'));
}
2017-07-01 07:52:38 +00:00
private function getTable($tableName)
{
return $this->container->getParameter('database_table_prefix') . $tableName;
}
2016-12-04 12:51:58 +00:00
}