aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema_0053-add-report-extra-fields-table.sql
blob: be92abd47669a6512a4d5e0f45dd9aa7f4b9c270 (plain)
1
2
3
4
5
6
7
8
9
10
11
BEGIN;

CREATE TABLE report_extra_fields (
    id serial not null primary key,
    name text not null,
    cobrand text,
    language text,
    extra text
);

COMMIT;