mirror of
https://github.com/logto-io/logto.git
synced 2024-12-23 20:33:16 -05:00
5 lines
151 B
SQL
5 lines
151 B
SQL
create table custom_phrases (
|
|
language_key varchar(16) not null,
|
|
translation jsonb /* @use Translation */ not null,
|
|
primary key(language_key)
|
|
);
|