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:
parent
3215bc0bc5
commit
577ca48c07
1 changed files with 5 additions and 0 deletions
5
packages/schemas/tables/logto_configs.sql
Normal file
5
packages/schemas/tables/logto_configs.sql
Normal 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)
|
||||
);
|
Loading…
Add table
Reference in a new issue