/*
  Warnings:

  - A unique constraint covering the columns `[activity]` on the table `Room_Activities_Information` will be added. If there are existing duplicate values, this will fail.
  - Added the required column `activity` to the `Room_Activities_Information` table without a default value. This is not possible if the table is not empty.
  - Added the required column `latent_heat` to the `Room_Activities_Information` table without a default value. This is not possible if the table is not empty.
  - Added the required column `sensible_heat` to the `Room_Activities_Information` table without a default value. This is not possible if the table is not empty.
  - Added the required column `updatedAt` to the `Room_Activities_Information` table without a default value. This is not possible if the table is not empty.

*/
-- AlterTable
ALTER TABLE `Room_Activities_Information` ADD COLUMN `activity` VARCHAR(191) NOT NULL,
    ADD COLUMN `createdAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
    ADD COLUMN `latent_heat` VARCHAR(191) NOT NULL,
    ADD COLUMN `sensible_heat` VARCHAR(191) NOT NULL,
    ADD COLUMN `updatedAt` DATETIME(3) NOT NULL;

-- CreateIndex
CREATE UNIQUE INDEX `Room_Activities_Information_activity_key` ON `Room_Activities_Information`(`activity`);
