9 lines
254 B
SQL
9 lines
254 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Added the required column `uploadDate` to the `FileVariant` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "FileVariant" ADD COLUMN "uploadDate" TIMESTAMP(3) NOT NULL;
|