11 lines
401 B
SQL
11 lines
401 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Added the required column `mimeType` to the `files` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `size` to the `files` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "files" ADD COLUMN "mimeType" TEXT NOT NULL,
|
|
ADD COLUMN "size" INTEGER NOT NULL;
|