9 lines
226 B
SQL
9 lines
226 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Added the required column `iv` to the `files` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "files" ADD COLUMN "iv" VARCHAR(255) NOT NULL;
|