mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-23 09:31:04 +00:00
b3099f68c5
Also update these deps to be compatible with latest Doctrine version: - `friendsofsymfony/oauth-server-bundle` - `lexik/form-filter-bundle` - `dama/doctrine-test-bundle`
44 lines
1.3 KiB
PHP
44 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Application\Migrations;
|
|
|
|
use Doctrine\DBAL\Schema\Schema;
|
|
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
|
|
|
|
/**
|
|
* Added user_id column on oauth2_clients to prevent users to delete API clients from other users.
|
|
*/
|
|
class Version20161024212538 extends WallabagMigration
|
|
{
|
|
private $constraintName = 'IDX_user_oauth_client';
|
|
|
|
public function up(Schema $schema): void
|
|
{
|
|
$clientsTable = $schema->getTable($this->getTable('oauth2_clients'));
|
|
|
|
$this->skipIf($clientsTable->hasColumn('user_id'), 'It seems that you already played this migration.');
|
|
|
|
$clientsTable->addColumn('user_id', 'integer', ['notnull' => false]);
|
|
|
|
$clientsTable->addForeignKeyConstraint(
|
|
$this->getTable('user'),
|
|
['user_id'],
|
|
['id'],
|
|
['onDelete' => 'CASCADE'],
|
|
$this->constraintName
|
|
);
|
|
}
|
|
|
|
public function down(Schema $schema): void
|
|
{
|
|
$clientsTable = $schema->getTable($this->getTable('oauth2_clients'));
|
|
|
|
$this->skipIf(!$clientsTable->hasColumn('user_id'), 'It seems that you already played this migration.');
|
|
|
|
$clientsTable->dropColumn('user_id', 'integer');
|
|
|
|
if ('sqlite' !== $this->connection->getDatabasePlatform()->getName()) {
|
|
$clientsTable->removeForeignKey($this->constraintName);
|
|
}
|
|
}
|
|
}
|