0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-23 20:33:16 -05:00
logto/packages/schemas/tables/custom_phrases.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)
);