9 lines
287 B
SQL
9 lines
287 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Changed the type of `iv` on the `Chunk` table. No cast exists, the column would be dropped and recreated, which cannot be done if there is data, since the column is required.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "Chunk" DROP COLUMN "iv",
|
|
ADD COLUMN "iv" BYTEA NOT NULL;
|