feat(api): add description_templates to /systems/@me/settings

This commit is contained in:
spiral
2022-05-09 13:54:33 -04:00
parent 4c8e5d9aec
commit 3a99f65b49
3 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
-- schema version 30
alter table system_config add column description_templates text[] not null default array[]::text[];
update info set schema_version = 30;