/*
  Warnings:

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

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

-- AddForeignKey
ALTER TABLE `User_Building_Details` ADD CONSTRAINT `User_Building_Details_country_id_fkey` FOREIGN KEY (`country_id`) REFERENCES `Country`(`country_id`) ON DELETE RESTRICT ON UPDATE CASCADE;
