/[webpac2]/trunk/conf/dipl/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

Annotation of /trunk/conf/dipl/cited.sql

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1210 - (hide annotations)
Sat May 30 15:26:25 2009 UTC (14 years, 11 months ago) by dpavlin
Original Path: trunk/conf/isi/cited.sql
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 dpavlin 1210 drop table if exists cited;
2    
3 dpavlin 1208 create table cited (
4     id serial,
5 dpavlin 1210 cited_au text not null,
6     from_au text not null
7 dpavlin 1208 );
8    
9 dpavlin 1210 drop table if exists authors;
10 dpavlin 1208
11 dpavlin 1210 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