/*
  Warnings:

  - Added the required column `no_of_appliances` to the `User_Building_Other_Appliances` table without a default value. This is not possible if the table is not empty.
  - Added the required column `operating_hours` to the `User_Building_Other_Appliances` table without a default value. This is not possible if the table is not empty.
  - Added the required column `power_rating` to the `User_Building_Other_Appliances` table without a default value. This is not possible if the table is not empty.

*/
-- AlterTable
ALTER TABLE `User_Building_Other_Appliances` ADD COLUMN `no_of_appliances` VARCHAR(191) NOT NULL,
    ADD COLUMN `operating_hours` VARCHAR(191) NOT NULL,
    ADD COLUMN `power_rating` VARCHAR(191) NOT NULL;
