mirror of
https://github.com/wallabag/wallabag.git
synced 2024-10-31 22:28:54 +00:00
45 lines
1.4 KiB
PHP
45 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace Application\Migrations;
|
|
|
|
use Doctrine\DBAL\Platforms\SqlitePlatform;
|
|
use Doctrine\DBAL\Schema\Schema;
|
|
use Wallabag\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 (!$this->connection->getDatabasePlatform() instanceof SqlitePlatform) {
|
|
$clientsTable->removeForeignKey($this->constraintName);
|
|
}
|
|
}
|
|
}
|