· 8 years ago · Dec 05, 2017, 02:34 PM
1create table if not exists kup_classification
2(
3 cuid bigint not null
4 constraint kup_classification_pkey
5 primary key,
6 groupid bigint,
7 code_ varchar(75),
8 fixedpart varchar(75),
9 varpart varchar(75),
10 level bigint,
11 text_ varchar(75),
12 levelselectable boolean
13)
14;
15
16create index if not exists ix_f5293d25
17 on kup_classification (groupid)
18;