mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-15 09:57:41 +01:00
Force sequence creation for postgresql
This commit is contained in:
parent
b8427f22f0
commit
fd7fde9515
@ -10,7 +10,7 @@ use Symfony\Component\DependencyInjection\ContainerInterface;
|
|||||||
/**
|
/**
|
||||||
* Add site credential table to store username & password for some website (behind authentication or paywall)
|
* Add site credential table to store username & password for some website (behind authentication or paywall)
|
||||||
*/
|
*/
|
||||||
class Version20161204115751 extends AbstractMigration implements ContainerAwareInterface
|
class Version20170501115751 extends AbstractMigration implements ContainerAwareInterface
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @var ContainerInterface
|
* @var ContainerInterface
|
||||||
@ -44,6 +44,11 @@ class Version20161204115751 extends AbstractMigration implements ContainerAwareI
|
|||||||
$table->addIndex(['user_id'], 'idx_user');
|
$table->addIndex(['user_id'], 'idx_user');
|
||||||
$table->setPrimaryKey(['id']);
|
$table->setPrimaryKey(['id']);
|
||||||
$table->addForeignKeyConstraint($this->getTable('user'), ['user_id'], ['id'], [], 'fk_user');
|
$table->addForeignKeyConstraint($this->getTable('user'), ['user_id'], ['id'], [], 'fk_user');
|
||||||
|
|
||||||
|
if ('postgresql' === $this->connection->getDatabasePlatform()->getName()) {
|
||||||
|
$schema->dropSequence('site_credential_id_seq');
|
||||||
|
$schema->createSequence('site_credential_id_seq');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
Loading…
Reference in New Issue
Block a user