/*
  Warnings:

  - Added the required column `updatedAt` to the `Building_Sub_Types` table without a default value. This is not possible if the table is not empty.
  - Added the required column `updatedAt` to the `Building_Types` table without a default value. This is not possible if the table is not empty.
  - Added the required column `updatedAt` to the `Commodity` table without a default value. This is not possible if the table is not empty.
  - Added the required column `updatedAt` to the `Country` table without a default value. This is not possible if the table is not empty.
  - Added the required column `updatedAt` to the `Educational_Qualifications` table without a default value. This is not possible if the table is not empty.
  - Added the required column `updatedAt` to the `Installer_Types` table without a default value. This is not possible if the table is not empty.
  - Added the required column `updatedAt` to the `Interests` table without a default value. This is not possible if the table is not empty.
  - Added the required column `updatedAt` to the `Intern_Interests` table without a default value. This is not possible if the table is not empty.
  - Added the required column `updatedAt` to the `JobRecommendations` table without a default value. This is not possible if the table is not empty.
  - Added the required column `updatedAt` to the `Lincense_Juridiction` table without a default value. This is not possible if the table is not empty.
  - Added the required column `updatedAt` to the `Lincenses` table without a default value. This is not possible if the table is not empty.
  - Added the required column `updatedAt` to the `Professional_Qualifications` table without a default value. This is not possible if the table is not empty.
  - Added the required column `updatedAt` to the `Publications` table without a default value. This is not possible if the table is not empty.
  - Added the required column `updatedAt` to the `States` table without a default value. This is not possible if the table is not empty.
  - Added the required column `updatedAt` to the `User_Building_Commodities` table without a default value. This is not possible if the table is not empty.
  - Added the required column `updatedAt` to the `User_Building_Details` table without a default value. This is not possible if the table is not empty.
  - Added the required column `updatedAt` to the `User_Building_Utility` table without a default value. This is not possible if the table is not empty.
  - Added the required column `updatedAt` to the `User_Installer_Types` table without a default value. This is not possible if the table is not empty.
  - Added the required column `updatedAt` to the `Utility_Companies` table without a default value. This is not possible if the table is not empty.
  - Added the required column `updatedAt` to the `Work_Experience` table without a default value. This is not possible if the table is not empty.

*/
-- AlterTable
ALTER TABLE `Building_Sub_Types` ADD COLUMN `createAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
    ADD COLUMN `updatedAt` DATETIME(3) NOT NULL;

-- AlterTable
ALTER TABLE `Building_Types` ADD COLUMN `createAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
    ADD COLUMN `updatedAt` DATETIME(3) NOT NULL;

-- AlterTable
ALTER TABLE `Commodity` ADD COLUMN `createAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
    ADD COLUMN `updatedAt` DATETIME(3) NOT NULL;

-- AlterTable
ALTER TABLE `Country` ADD COLUMN `createAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
    ADD COLUMN `updatedAt` DATETIME(3) NOT NULL;

-- AlterTable
ALTER TABLE `Educational_Qualifications` ADD COLUMN `createAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
    ADD COLUMN `updatedAt` DATETIME(3) NOT NULL;

-- AlterTable
ALTER TABLE `Installer_Types` ADD COLUMN `createAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
    ADD COLUMN `updatedAt` DATETIME(3) NOT NULL;

-- AlterTable
ALTER TABLE `Interests` ADD COLUMN `createAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
    ADD COLUMN `updatedAt` DATETIME(3) NOT NULL;

-- AlterTable
ALTER TABLE `Intern_Interests` ADD COLUMN `createAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
    ADD COLUMN `updatedAt` DATETIME(3) NOT NULL;

-- AlterTable
ALTER TABLE `JobRecommendations` ADD COLUMN `createAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
    ADD COLUMN `updatedAt` DATETIME(3) NOT NULL;

-- AlterTable
ALTER TABLE `Lincense_Juridiction` ADD COLUMN `createAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
    ADD COLUMN `updatedAt` DATETIME(3) NOT NULL;

-- AlterTable
ALTER TABLE `Lincenses` ADD COLUMN `createAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
    ADD COLUMN `updatedAt` DATETIME(3) NOT NULL;

-- AlterTable
ALTER TABLE `Professional_Qualifications` ADD COLUMN `createAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
    ADD COLUMN `updatedAt` DATETIME(3) NOT NULL;

-- AlterTable
ALTER TABLE `Publications` ADD COLUMN `createAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
    ADD COLUMN `updatedAt` DATETIME(3) NOT NULL;

-- AlterTable
ALTER TABLE `States` ADD COLUMN `createAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
    ADD COLUMN `updatedAt` DATETIME(3) NOT NULL;

-- AlterTable
ALTER TABLE `User_Building_Commodities` ADD COLUMN `createAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
    ADD COLUMN `updatedAt` DATETIME(3) NOT NULL;

-- AlterTable
ALTER TABLE `User_Building_Details` ADD COLUMN `createAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
    ADD COLUMN `updatedAt` DATETIME(3) NOT NULL;

-- AlterTable
ALTER TABLE `User_Building_Utility` ADD COLUMN `createAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
    ADD COLUMN `updatedAt` DATETIME(3) NOT NULL;

-- AlterTable
ALTER TABLE `User_Installer_Types` ADD COLUMN `createAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
    ADD COLUMN `updatedAt` DATETIME(3) NOT NULL;

-- AlterTable
ALTER TABLE `Utility_Companies` ADD COLUMN `createAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
    ADD COLUMN `updatedAt` DATETIME(3) NOT NULL;

-- AlterTable
ALTER TABLE `Work_Experience` ADD COLUMN `createAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
    ADD COLUMN `updatedAt` DATETIME(3) NOT NULL;
