/[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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1229 by dpavlin, Sat May 30 15:26:25 2009 UTC revision 1230 by mglavica, Thu Jul 9 15:11:08 2009 UTC
# Line 1  Line 1 
1    drop table if exists utca;
2    
3    create table utca (
4            id serial,
5            ut text,
6            ca text,
7    );
8    
9  drop table if exists cited;  drop table if exists cited;
10    
11  create table cited (  create table cited (
12          id serial,          id serial,
13          cited_au text not null,          cited_au text,
14          from_au text not null          from_au text,
15            ut text,
16            cited_full text
17  );  );
18    
19  drop table if exists authors;  drop table if exists authors;
# Line 13  create table authors ( Line 23  create table authors (
23          au text not null          au text not null
24  );  );
25    
26    
27    drop table if exists citing;
28    
29    create table citing (
30            id serial,
31            ut text,
32            ca text,
33            pt text,
34            au text,
35            af text,
36            ti text,
37            so text,
38            la text,
39            dt text,
40            c1 text,
41            rp text,
42            cr text,
43            nr integer,
44            pi text,
45            py integer,
46            sc text
47    );
48    
49    
50  -- create index cited_au on cited(au);  -- create index cited_au on cited(au);
51  -- create index cited_cited on cited(cited);  -- create index cited_cited on cited(cited);
52    

Legend:
Removed from v.1229  
changed lines
  Added in v.1230

  ViewVC Help
Powered by ViewVC 1.1.26