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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1272 - (show annotations)
Tue Aug 11 13:05:35 2009 UTC (14 years, 8 months ago) by mglavica
File size: 616 byte(s)
diploma work - changing the name of conf directory

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;
10
11 create table cited (
12 id serial,
13 cited_au text,
14 from_au text,
15 ut text,
16 cited_full text
17 );
18
19 drop table if exists authors;
20
21 create table authors (
22 id serial,
23 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);
51 -- create index cited_cited on cited(cited);
52

Properties

Name Value
svn:mergeinfo

  ViewVC Help
Powered by ViewVC 1.1.26