You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
db-schema/db_scripts/diff/15030.up

8 lines
270 B

USE provisioning;
SET FOREIGN_KEY_CHECKS=0;
alter table autoprov_profiles drop foreign key fk_profile_firmware_idx;
alter table autoprov_profiles drop column firmware_id;
alter table autoprov_firmwares add key version_idx(device_id, version);
SET FOREIGN_KEY_CHECKS=1;