15 lines
196 B
MySQL
15 lines
196 B
MySQL
|
-- Deploy camper:translation to pg
|
||
|
-- requires: schema_camper
|
||
|
|
||
|
begin;
|
||
|
|
||
|
set search_path to camper, public;
|
||
|
|
||
|
create type translation as (
|
||
|
lang_tag text,
|
||
|
endonym text,
|
||
|
missing boolean
|
||
|
);
|
||
|
|
||
|
commit;
|