Files
landscape-template/prisma/migrations/20220720103112_update_created_at_comment_col/migration.sql
2022-07-20 18:36:51 +03:00

10 lines
280 B
SQL

/*
Warnings:
- You are about to drop the column `createdAt` on the `PostComment` table. All the data in the column will be lost.
*/
-- AlterTable
ALTER TABLE "PostComment" DROP COLUMN "createdAt",
ADD COLUMN "created_at" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP;