You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Migrating tables with foreign keys constraints is an experimental feature in copydb and should be used at your own risk in production.
7
+
Migrating tables with foreign keys constraints is an experimental feature in copydb and should be used at your own risk in production. Currently migrating tables with foreign key constraints is only possible
8
+
if the source database is in read_only mode. Since tables with foreign key constraints can have referential actions for a foreign key such as ``ON DELETE CASCADE``, ``ON UPDATE CASCADE``. Cascading deletes and updates
9
+
in child tablees caused by foreign key constraints don't show up in binlogs because these referential actions are dealt internally by InnoDB. This issue descibes briefly why the source database should be
10
+
read_only during the migration - https://github.com/Shopify/ghostferry/issues/289.
0 commit comments