/[webpac2]/trunk/conf/isi/cited.sql
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/conf/isi/cited.sql

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1210 - (show annotations)
Sat May 30 15:26:25 2009 UTC (14 years, 10 months ago) by dpavlin
File size: 287 byte(s)
 r1906@llin:  dpavlin | 2009-05-30 17:26:17 +0200
 added table name to row normalize command so we can create
 data in different tables directly from normalization file

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

  ViewVC Help
Powered by ViewVC 1.1.26