mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-22 13:31:37 +03:00
9 lines
242 B
MySQL
9 lines
242 B
MySQL
|
/*
|
||
|
Warnings:
|
||
|
|
||
|
- Made the column `model` on table `ai_prompts_metadata` required. This step will fail if there are existing NULL values in that column.
|
||
|
|
||
|
*/
|
||
|
-- AlterTable
|
||
|
ALTER TABLE "ai_prompts_metadata" ALTER COLUMN "model" SET NOT NULL;
|