332
by beaky
Adding the new keyword database schema (for use in 0.7.2). |
1 |
create table keyword |
2 |
( kentryno number(9) primary key, |
|
3 |
kflag char(1), |
|
4 |
kword varchar2(30) not null, |
|
5 |
kexclusions varchar2(120), |
|
6 |
kiloc varchar2(20), |
|
7 |
kiscore number(1), |
|
8 |
kicat char(1), |
|
9 |
kicscore number(1), |
|
10 |
kidet varchar2(40), |
|
11 |
kidscore number(1), |
|
12 |
kiattr varchar2(30), |
|
13 |
kiascore number(1), |
|
14 |
kiother varchar2(40), |
|
15 |
kioscore number(1), |
|
16 |
knotes varchar2(80), |
|
17 |
kadded date, |
|
18 |
kamended date ); |