modmapper/migrations/20231108061201_fix_cells_unique_index.sql

3 lines
183 B
MySQL
Raw Normal View History

2023-11-08 21:06:26 +00:00
DROP INDEX "cells_unique_form_id_master_and_world_id";
CREATE UNIQUE INDEX "cells_unique_form_id_master_and_world_id" ON "cells" ("form_id", "master", "world_id") NULLS NOT DISTINCT;