2016-10-24 19:56:28 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Application\Migrations;
|
|
|
|
|
2023-08-05 17:35:09 +00:00
|
|
|
use Doctrine\DBAL\Platforms\SqlitePlatform;
|
2016-10-24 19:56:28 +00:00
|
|
|
use Doctrine\DBAL\Schema\Schema;
|
2024-02-19 00:30:12 +00:00
|
|
|
use Wallabag\Doctrine\WallabagMigration;
|
2016-10-24 19:56:28 +00:00
|
|
|
|
2017-01-13 13:51:37 +00:00
|
|
|
/**
|
2017-04-13 10:57:31 +00:00
|
|
|
* Added user_id column on oauth2_clients to prevent users to delete API clients from other users.
|
2017-01-13 13:51:37 +00:00
|
|
|
*/
|
2018-06-14 11:43:09 +00:00
|
|
|
class Version20161024212538 extends WallabagMigration
|
2016-10-24 19:56:28 +00:00
|
|
|
{
|
2017-01-23 13:16:00 +00:00
|
|
|
private $constraintName = 'IDX_user_oauth_client';
|
|
|
|
|
2022-12-14 13:36:29 +00:00
|
|
|
public function up(Schema $schema): void
|
2016-10-24 19:56:28 +00:00
|
|
|
{
|
2016-11-26 14:40:42 +00:00
|
|
|
$clientsTable = $schema->getTable($this->getTable('oauth2_clients'));
|
2016-10-24 19:56:28 +00:00
|
|
|
|
2024-03-10 21:40:40 +00:00
|
|
|
if ($clientsTable->hasColumn('user_id')) {
|
|
|
|
$this->write('It seems that you already played this migration.');
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2016-11-25 16:43:28 +00:00
|
|
|
|
2017-01-23 13:16:00 +00:00
|
|
|
$clientsTable->addColumn('user_id', 'integer', ['notnull' => false]);
|
2016-11-26 14:40:42 +00:00
|
|
|
|
|
|
|
$clientsTable->addForeignKeyConstraint(
|
|
|
|
$this->getTable('user'),
|
2016-11-30 10:27:07 +00:00
|
|
|
['user_id'],
|
|
|
|
['id'],
|
2017-01-23 13:16:00 +00:00
|
|
|
['onDelete' => 'CASCADE'],
|
|
|
|
$this->constraintName
|
2016-11-26 14:40:42 +00:00
|
|
|
);
|
2016-10-24 19:56:28 +00:00
|
|
|
}
|
|
|
|
|
2022-12-14 13:36:29 +00:00
|
|
|
public function down(Schema $schema): void
|
2016-10-24 19:56:28 +00:00
|
|
|
{
|
2017-01-23 13:16:00 +00:00
|
|
|
$clientsTable = $schema->getTable($this->getTable('oauth2_clients'));
|
|
|
|
|
2024-03-10 21:40:40 +00:00
|
|
|
if ($clientsTable->hasColumn('user_id')) {
|
|
|
|
$this->write('It seems that you already played this migration.');
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2017-01-23 13:16:00 +00:00
|
|
|
|
|
|
|
$clientsTable->dropColumn('user_id', 'integer');
|
|
|
|
|
2023-08-05 17:35:09 +00:00
|
|
|
if (!$this->connection->getDatabasePlatform() instanceof SqlitePlatform) {
|
2017-01-23 13:16:00 +00:00
|
|
|
$clientsTable->removeForeignKey($this->constraintName);
|
|
|
|
}
|
2016-10-24 19:56:28 +00:00
|
|
|
}
|
|
|
|
}
|