0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-20 21:32:31 -05:00

feat(schemas): add logto configs table (#1940)

This commit is contained in:
wangsijie 2022-09-15 17:39:49 +08:00 committed by GitHub
parent 3215bc0bc5
commit 577ca48c07
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,5 @@
create table _logto_configs (
key varchar(256) not null,
value jsonb /* @use ArbitraryObject */ not null default '{}'::jsonb,
primary key (key)
);