13 lines
434 B
SQL
13 lines
434 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `uploadDate` on the `FileVariant` table. All the data in the column will be lost.
|
|
- Added the required column `uploadDate` to the `FileData` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "FileData" ADD COLUMN "uploadDate" TIMESTAMP(3) NOT NULL;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "FileVariant" DROP COLUMN "uploadDate";
|