mirror of
https://github.com/aljazceru/landscape-template.git
synced 2025-12-17 06:14:27 +01:00
10 lines
280 B
SQL
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;
|