/*
  Warnings:

  - You are about to drop the column `createAt` on the `Building_Sub_Types` table. All the data in the column will be lost.
  - You are about to drop the column `createAt` on the `Building_Types` table. All the data in the column will be lost.
  - You are about to drop the column `createAt` on the `Commodity` table. All the data in the column will be lost.
  - You are about to drop the column `createAt` on the `Educational_Qualifications` table. All the data in the column will be lost.
  - You are about to drop the column `createAt` on the `Installer_Types` table. All the data in the column will be lost.
  - You are about to drop the column `createAt` on the `Intern_Interests` table. All the data in the column will be lost.
  - You are about to drop the column `createAt` on the `JobRecommendations` table. All the data in the column will be lost.
  - You are about to drop the column `createAt` on the `Lincense_Juridiction` table. All the data in the column will be lost.
  - You are about to drop the column `createAt` on the `Lincenses` table. All the data in the column will be lost.
  - You are about to drop the column `createAt` on the `Professional_Qualifications` table. All the data in the column will be lost.
  - You are about to drop the column `createAt` on the `Publications` table. All the data in the column will be lost.
  - You are about to drop the column `createAt` on the `User_Building_Commodities` table. All the data in the column will be lost.
  - You are about to drop the column `createAt` on the `User_Building_Details` table. All the data in the column will be lost.
  - You are about to drop the column `createAt` on the `User_Building_Utility` table. All the data in the column will be lost.
  - You are about to drop the column `createAt` on the `User_Installer_Types` table. All the data in the column will be lost.
  - You are about to drop the column `createAt` on the `Utility_Companies` table. All the data in the column will be lost.
  - You are about to drop the column `createAt` on the `Work_Experience` table. All the data in the column will be lost.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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