diff --git a/storage/db-mysql-v2/src/main/resources/db/migration/dev/V1.1.9__Drop_palette_column_from_particiapnt.sql b/storage/db-mysql-v2/src/main/resources/db/migration/dev/V1.1.9__Drop_palette_column_from_particiapnt.sql new file mode 100644 index 00000000..8ce8c352 --- /dev/null +++ b/storage/db-mysql-v2/src/main/resources/db/migration/dev/V1.1.9__Drop_palette_column_from_particiapnt.sql @@ -0,0 +1,7 @@ +-- V1.1.9__Drop_palette_column_from_participant_table + +SET foreign_key_checks = 0; +ALTER TABLE participant DROP FOREIGN KEY fk_participant_palette; +ALTER TABLE participant DROP COLUMN palette_id; +SET foreign_key_checks = 1; +