Skip to content

Commit

Permalink
Split the foreign keys removal.
Browse files Browse the repository at this point in the history
  • Loading branch information
ruslanbaidan committed Oct 6, 2024
1 parent ea4cc43 commit 2351f89
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion migrations/db/20230901112005_fix_positions_cleanup_db.php
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,8 @@ public function change()
/* Correct MeasuresMeasures table structure. */
$this->table('measures_measures')
->addColumn('id', 'integer', ['signed' => false, 'after' => MysqlAdapter::FIRST])
->dropForeignKey(['child_id', 'father_id'])
->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 2351f89

Please sign in to comment.