/*
  Warnings:

  - Added the required column `room_id` to the `User_Room_Other_Appliances` table without a default value. This is not possible if the table is not empty.

*/
-- AlterTable
ALTER TABLE `User_Room_Other_Appliances` ADD COLUMN `room_id` VARCHAR(191) NOT NULL;

-- AddForeignKey
ALTER TABLE `User_Room_Other_Appliances` ADD CONSTRAINT `User_Room_Other_Appliances_room_id_fkey` FOREIGN KEY (`room_id`) REFERENCES `Rooms`(`room_id`) ON DELETE CASCADE ON UPDATE CASCADE;
