/*
  Warnings:

  - You are about to drop the column `createAt` on the `States` table. All the data in the column will be lost.

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