odin-codespace/file-uploader/prisma/migrations/20250615005234_updated_dir_creation_date/migration.sql
2025-06-26 16:30:30 -04:00

9 lines
277 B
SQL

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