mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-06-27 11:20:40 -04:00
9 lines
277 B
SQL
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;
|