12 lines
469 B
SQL
12 lines
469 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Added the required column `finishedUploading` to the `Attachment` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `index` to the `Chunk` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "Attachment" ADD COLUMN "finishedUploading" BOOLEAN NOT NULL;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "Chunk" ADD COLUMN "index" INTEGER NOT NULL;
|