2022-09-13 04:36:37 -05:00
|
|
|
create table custom_phrases (
|
2022-09-29 21:30:32 -05:00
|
|
|
language_tag varchar(16) not null,
|
2022-09-13 04:36:37 -05:00
|
|
|
translation jsonb /* @use Translation */ not null,
|
2022-09-29 21:30:32 -05:00
|
|
|
primary key(language_tag)
|
2022-09-13 04:36:37 -05:00
|
|
|
);
|