mirror of
https://github.com/logto-io/logto.git
synced 2025-01-06 20:40:08 -05:00
5 lines
151 B
SQL
5 lines
151 B
SQL
create table custom_phrases (
|
|
language_tag varchar(16) not null,
|
|
translation jsonb /* @use Translation */ not null,
|
|
primary key(language_tag)
|
|
);
|