r1906@llin: dpavlin | 2009-05-30 17:26:17 +0200
[webpac2] / conf / isi / cited.sql
1 drop table if exists cited;
2
3 create table cited (
4         id serial,
5         cited_au text not null,
6         from_au text not null
7 );
8
9 drop table if exists authors;
10
11 create table authors (
12         id serial,
13         au text not null
14 );
15
16 -- create index cited_au on cited(au);
17 -- create index cited_cited on cited(cited);
18