2016-10-01 07:26:32 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Application\Migrations;
|
|
|
|
|
2023-08-05 17:35:09 +00:00
|
|
|
use Doctrine\DBAL\Platforms\MySQLPlatform;
|
|
|
|
use Doctrine\DBAL\Platforms\PostgreSQLPlatform;
|
|
|
|
use Doctrine\DBAL\Platforms\SqlitePlatform;
|
2016-10-01 07:26:32 +00:00
|
|
|
use Doctrine\DBAL\Schema\Schema;
|
2024-03-30 00:17:41 +00:00
|
|
|
use Doctrine\Migrations\Exception\SkipMigration;
|
2024-02-19 00:30:12 +00:00
|
|
|
use Wallabag\Doctrine\WallabagMigration;
|
2016-10-01 07:26:32 +00:00
|
|
|
|
2017-01-13 13:51:37 +00:00
|
|
|
/**
|
2017-04-13 10:57:31 +00:00
|
|
|
* Added pocket_consumer_key field on wallabag_config.
|
2017-01-13 13:51:37 +00:00
|
|
|
*/
|
2018-06-14 11:43:09 +00:00
|
|
|
class Version20161001072726 extends WallabagMigration
|
2016-10-01 07:26:32 +00:00
|
|
|
{
|
2022-12-14 13:36:29 +00:00
|
|
|
public function up(Schema $schema): void
|
2016-10-01 07:26:32 +00:00
|
|
|
{
|
2023-08-05 17:35:09 +00:00
|
|
|
$platform = $this->connection->getDatabasePlatform();
|
|
|
|
|
2024-02-18 22:47:34 +00:00
|
|
|
if ($platform instanceof SqlitePlatform) {
|
|
|
|
$this->write('Migration can only be executed safely on \'mysql\' or \'postgresql\'.');
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2016-10-23 10:35:57 +00:00
|
|
|
|
|
|
|
// remove all FK from entry_tag
|
2023-08-05 17:35:09 +00:00
|
|
|
switch (true) {
|
|
|
|
case $platform instanceof MySQLPlatform:
|
2016-12-23 08:00:13 +00:00
|
|
|
$query = $this->connection->query("
|
|
|
|
SELECT CONSTRAINT_NAME
|
|
|
|
FROM information_schema.key_column_usage
|
2018-06-14 12:15:07 +00:00
|
|
|
WHERE TABLE_NAME = '" . $this->getTable('entry_tag', WallabagMigration::UN_ESCAPED_TABLE) . "' AND CONSTRAINT_NAME LIKE 'FK_%'
|
2017-07-01 07:52:38 +00:00
|
|
|
AND TABLE_SCHEMA = '" . $this->connection->getDatabase() . "'"
|
2016-12-23 08:00:13 +00:00
|
|
|
);
|
2016-10-23 10:35:57 +00:00
|
|
|
|
2022-12-14 13:36:29 +00:00
|
|
|
foreach ($query->fetchAllAssociative() as $fk) {
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->addSql('ALTER TABLE ' . $this->getTable('entry_tag') . ' DROP FOREIGN KEY ' . $fk['CONSTRAINT_NAME']);
|
2016-12-23 08:00:13 +00:00
|
|
|
}
|
|
|
|
break;
|
2023-08-05 17:35:09 +00:00
|
|
|
case $platform instanceof PostgreSQLPlatform:
|
2016-12-23 08:00:13 +00:00
|
|
|
// http://dba.stackexchange.com/questions/36979/retrieving-all-pk-and-fk
|
|
|
|
$query = $this->connection->query("
|
|
|
|
SELECT conrelid::regclass AS table_from
|
|
|
|
,conname
|
|
|
|
,pg_get_constraintdef(c.oid)
|
|
|
|
FROM pg_constraint c
|
|
|
|
JOIN pg_namespace n ON n.oid = c.connamespace
|
|
|
|
WHERE contype = 'f'
|
2018-06-14 12:15:07 +00:00
|
|
|
AND conrelid::regclass::text = '" . $this->getTable('entry_tag', WallabagMigration::UN_ESCAPED_TABLE) . "'
|
2016-12-23 08:00:13 +00:00
|
|
|
AND n.nspname = 'public';"
|
|
|
|
);
|
|
|
|
|
2022-12-14 13:36:29 +00:00
|
|
|
foreach ($query->fetchAllAssociative() as $fk) {
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->addSql('ALTER TABLE ' . $this->getTable('entry_tag') . ' DROP CONSTRAINT ' . $fk['conname']);
|
2016-12-23 08:00:13 +00:00
|
|
|
}
|
|
|
|
break;
|
2016-10-23 10:35:57 +00:00
|
|
|
}
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->addSql('ALTER TABLE ' . $this->getTable('entry_tag') . ' ADD CONSTRAINT FK_entry_tag_entry FOREIGN KEY (entry_id) REFERENCES ' . $this->getTable('entry') . ' (id) ON DELETE CASCADE');
|
|
|
|
$this->addSql('ALTER TABLE ' . $this->getTable('entry_tag') . ' ADD CONSTRAINT FK_entry_tag_tag FOREIGN KEY (tag_id) REFERENCES ' . $this->getTable('tag') . ' (id) ON DELETE CASCADE');
|
2016-10-23 10:35:57 +00:00
|
|
|
|
|
|
|
// remove entry FK from annotation
|
|
|
|
|
2023-08-05 17:35:09 +00:00
|
|
|
switch (true) {
|
|
|
|
case $platform instanceof MySQLPlatform:
|
2016-12-23 08:00:13 +00:00
|
|
|
$query = $this->connection->query("
|
|
|
|
SELECT CONSTRAINT_NAME
|
|
|
|
FROM information_schema.key_column_usage
|
2018-06-14 12:15:07 +00:00
|
|
|
WHERE TABLE_NAME = '" . $this->getTable('annotation', WallabagMigration::UN_ESCAPED_TABLE) . "'
|
2016-12-23 08:00:13 +00:00
|
|
|
AND CONSTRAINT_NAME LIKE 'FK_%'
|
|
|
|
AND COLUMN_NAME = 'entry_id'
|
2017-07-01 07:52:38 +00:00
|
|
|
AND TABLE_SCHEMA = '" . $this->connection->getDatabase() . "'"
|
2016-12-23 08:00:13 +00:00
|
|
|
);
|
|
|
|
|
2022-12-14 13:36:29 +00:00
|
|
|
foreach ($query->fetchAllAssociative() as $fk) {
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->addSql('ALTER TABLE ' . $this->getTable('annotation') . ' DROP FOREIGN KEY ' . $fk['CONSTRAINT_NAME']);
|
2016-12-23 08:00:13 +00:00
|
|
|
}
|
|
|
|
break;
|
2023-08-05 17:35:09 +00:00
|
|
|
case $platform instanceof PostgreSQLPlatform:
|
2016-12-23 08:00:13 +00:00
|
|
|
// http://dba.stackexchange.com/questions/36979/retrieving-all-pk-and-fk
|
|
|
|
$query = $this->connection->query("
|
|
|
|
SELECT conrelid::regclass AS table_from
|
|
|
|
,conname
|
|
|
|
,pg_get_constraintdef(c.oid)
|
|
|
|
FROM pg_constraint c
|
|
|
|
JOIN pg_namespace n ON n.oid = c.connamespace
|
|
|
|
WHERE contype = 'f'
|
2018-06-14 12:15:07 +00:00
|
|
|
AND conrelid::regclass::text = '" . $this->getTable('annotation', WallabagMigration::UN_ESCAPED_TABLE) . "'
|
2016-12-23 08:00:13 +00:00
|
|
|
AND n.nspname = 'public'
|
|
|
|
AND pg_get_constraintdef(c.oid) LIKE '%entry_id%';"
|
|
|
|
);
|
|
|
|
|
2022-12-14 13:36:29 +00:00
|
|
|
foreach ($query->fetchAllAssociative() as $fk) {
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->addSql('ALTER TABLE ' . $this->getTable('annotation') . ' DROP CONSTRAINT ' . $fk['conname']);
|
2016-12-23 08:00:13 +00:00
|
|
|
}
|
|
|
|
break;
|
2016-10-23 10:35:57 +00:00
|
|
|
}
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->addSql('ALTER TABLE ' . $this->getTable('annotation') . ' ADD CONSTRAINT FK_annotation_entry FOREIGN KEY (entry_id) REFERENCES ' . $this->getTable('entry') . ' (id) ON DELETE CASCADE');
|
2016-10-01 07:26:32 +00:00
|
|
|
}
|
|
|
|
|
2022-12-14 13:36:29 +00:00
|
|
|
public function down(Schema $schema): void
|
2016-10-01 07:26:32 +00:00
|
|
|
{
|
2024-03-30 00:17:41 +00:00
|
|
|
throw new SkipMigration('Too complex ...');
|
2016-10-01 07:26:32 +00:00
|
|
|
}
|
|
|
|
}
|