Skip to content

Commit

Permalink
Replaced the foreign keys removal with the direct alter.
Browse files Browse the repository at this point in the history
  • Loading branch information
ruslanbaidan committed Oct 8, 2024
1 parent 2351f89 commit 3408779
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions migrations/db/20230901112005_fix_positions_cleanup_db.php
Original file line number Diff line number Diff line change
Expand Up @@ -180,10 +180,10 @@ public function change()
);
}
/* Correct MeasuresMeasures table structure. */
$this->execute('ALTER TABLE `measures_measures` DROP FOREIGN KEY IF EXISTS `measures_measures_ibfk_1`');
$this->execute('ALTER TABLE `measures_measures` DROP FOREIGN KEY IF EXISTS `measures_measures_ibfk_2`');
$this->table('measures_measures')
->addColumn('id', 'integer', ['signed' => false, 'after' => MysqlAdapter::FIRST])
->dropForeignKey('child_id')
->dropForeignKey('father_id')
->renameColumn('father_id', 'master_measure_id')
->renameColumn('child_id', 'linked_measure_id')
->removeColumn('creator')
Expand Down

0 comments on commit 3408779

Please sign in to comment.