added offset and limit [0.02]
[webpac2] / conf / ffcasopisi / schema.sql
1 drop table if exists sig;
2 create table sig (
3         id serial,
4         zbirka text,
5         mfn integer,
6         signatura text,
7         biljeska text,
8         naslov text,
9         issn text,
10         fond text
11 );
12
13 drop table if exists bibraz;
14 create table bibraz (
15         id serial,
16         mfn integer,
17         ldr7 text,
18         f008 text,
19         signatura text,
20         naslov1 text,
21         issn text,
22         naslov2 text,
23         serija text
24 );
25
26 drop table if exists isis;
27 create table isis (
28         id serial,
29         sig text,
30         zbirka text,
31         mfn integer,
32         signatura text,
33         zemlja text,
34         naslov text,
35         odgovornost text,
36         issn text,
37         f205 text,
38         f207a text,
39         f210d text,
40         f326 text,
41         f215a text,
42         f991b text
43 );
44
45 drop table if exists frek;
46 create table frek (
47         kratica text,
48         znacenje text
49 );
50
51 drop table if exists csigid;
52 create table csigid (
53         csigid text
54 );
55