aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema_0052-translation-table.sql
blob: 95df499cc349a52c2946b211e9b28fc13cf77e17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
BEGIN;

CREATE TABLE translation (
    id serial not null primary key,
    tbl text not null,
    object_id integer not null,
    col text not null,
    lang text not null,
    msgstr text not null,
    unique(tbl, object_id, col, lang)
);

COMMIT;