feat: Add new columns "enabled" and "meta" to "Source" table with defaults
All checks were successful
Gitea Build Check / Build (pull_request) Successful in 3m14s

Signed-off-by: SoXX <soxx@anthrove.art>
This commit is contained in:
SoXX 2025-01-21 15:10:48 +01:00
parent baa49d0a81
commit d52b8f7f81

View File

@ -0,0 +1,5 @@
-- +migrate Up
ALTER TABLE "Source"
ADD COLUMN enabled BOOL DEFAULT FALSE,
ADD COLUMN meta JSON DEFAULT '{}';