]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/040.schema.asset.sql
Create a bunch of new indexes so that the new actor.usr_delete
[Evergreen.git] / Open-ILS / src / sql / Pg / 040.schema.asset.sql
1 /*
2  * Copyright (C) 2004-2008  Georgia Public Library Service
3  * Copyright (C) 2007-2008  Equinox Software, Inc.
4  * Mike Rylander <miker@esilibrary.com> 
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  */
17
18 DROP SCHEMA asset CASCADE;
19
20 BEGIN;
21
22 CREATE SCHEMA asset;
23
24 CREATE TABLE asset.copy_location (
25         id              SERIAL  PRIMARY KEY,
26         name            TEXT    NOT NULL,
27         owning_lib      INT     NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
28         holdable        BOOL    NOT NULL DEFAULT TRUE,
29         hold_verify     BOOL    NOT NULL DEFAULT FALSE,
30         opac_visible    BOOL    NOT NULL DEFAULT TRUE,
31         circulate       BOOL    NOT NULL DEFAULT TRUE,
32         CONSTRAINT acl_name_once_per_lib UNIQUE (name, owning_lib)
33 );
34
35 CREATE TABLE asset.copy (
36         id              BIGSERIAL                       PRIMARY KEY,
37         circ_lib        INT                             NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
38         creator         BIGINT                          NOT NULL,
39         call_number     BIGINT                          NOT NULL,
40         editor          BIGINT                          NOT NULL,
41         create_date     TIMESTAMP WITH TIME ZONE        DEFAULT NOW(),
42         edit_date       TIMESTAMP WITH TIME ZONE        DEFAULT NOW(),
43         copy_number     INT,
44         status          INT                             NOT NULL DEFAULT 0 REFERENCES config.copy_status (id) DEFERRABLE INITIALLY DEFERRED,
45         location        INT                             NOT NULL DEFAULT 1 REFERENCES asset.copy_location (id) DEFERRABLE INITIALLY DEFERRED,
46         loan_duration   INT                             NOT NULL CHECK ( loan_duration IN (1,2,3) ),
47         fine_level      INT                             NOT NULL CHECK ( fine_level IN (1,2,3) ),
48         age_protect     INT,
49         circulate       BOOL                            NOT NULL DEFAULT TRUE,
50         deposit         BOOL                            NOT NULL DEFAULT FALSE,
51         ref             BOOL                            NOT NULL DEFAULT FALSE,
52         holdable        BOOL                            NOT NULL DEFAULT TRUE,
53         deposit_amount  NUMERIC(6,2)                    NOT NULL DEFAULT 0.00,
54         price           NUMERIC(8,2),
55         barcode         TEXT                            NOT NULL,
56         circ_modifier   TEXT,
57         circ_as_type    TEXT,
58         dummy_title     TEXT,
59         dummy_author    TEXT,
60         alert_message   TEXT,
61         opac_visible    BOOL                            NOT NULL DEFAULT TRUE,
62         deleted         BOOL                            NOT NULL DEFAULT FALSE
63 );
64 CREATE UNIQUE INDEX copy_barcode_key ON asset.copy (barcode) WHERE deleted IS FALSE;
65 CREATE INDEX cp_cn_idx ON asset.copy (call_number);
66 CREATE INDEX cp_avail_cn_idx ON asset.copy (call_number);
67 CREATE INDEX cp_creator_idx  ON asset.copy ( creator );
68 CREATE INDEX cp_editor_idx   ON asset.copy ( editor );
69 CREATE RULE protect_copy_delete AS ON DELETE TO asset.copy DO INSTEAD UPDATE asset.copy SET deleted = TRUE WHERE OLD.id = asset.copy.id;
70
71 CREATE TABLE asset.copy_transparency (
72         id              SERIAL          PRIMARY KEY,
73         deposit_amount  NUMERIC(6,2),
74         owner           INT             NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
75         circ_lib        INT             REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
76         loan_duration   INT             CHECK ( loan_duration IN (1,2,3) ),
77         fine_level      INT             CHECK ( fine_level IN (1,2,3) ),
78         holdable        BOOL,
79         circulate       BOOL,
80         deposit         BOOL,
81         ref             BOOL,
82         opac_visible    BOOL,
83         circ_modifier   TEXT,
84         circ_as_type    TEXT,
85         name            TEXT            NOT NULL,
86         CONSTRAINT scte_name_once_per_lib UNIQUE (owner,name)
87 );
88
89 CREATE TABLE asset.copy_transparency_map (
90         id              BIGSERIAL       PRIMARY KEY,
91         transparency    INT     NOT NULL REFERENCES asset.copy_transparency (id) DEFERRABLE INITIALLY DEFERRED,
92         target_copy     INT     NOT NULL UNIQUE REFERENCES asset.copy (id) DEFERRABLE INITIALLY DEFERRED
93 );
94 CREATE INDEX cp_tr_cp_idx ON asset.copy_transparency_map (transparency);
95
96 CREATE TABLE asset.stat_cat_entry_transparency_map (
97         id                      BIGSERIAL       PRIMARY KEY,
98         stat_cat                INT             NOT NULL, -- needs ON DELETE CASCADE
99         stat_cat_entry          INT             NOT NULL, -- needs ON DELETE CASCADE
100         owning_transparency     INT             NOT NULL, -- needs ON DELETE CASCADE
101         CONSTRAINT scte_once_per_trans UNIQUE (owning_transparency,stat_cat)
102 );
103
104 CREATE TABLE asset.stat_cat (
105         id              SERIAL  PRIMARY KEY,
106         owner           INT     NOT NULL,
107         opac_visible    BOOL    NOT NULL DEFAULT FALSE,
108         name            TEXT    NOT NULL,
109         CONSTRAINT sc_once_per_owner UNIQUE (owner,name)
110 );
111
112 CREATE TABLE asset.stat_cat_entry (
113         id              SERIAL  PRIMARY KEY,
114         stat_cat        INT     NOT NULL,
115         owner           INT     NOT NULL,
116         value           TEXT    NOT NULL,
117         CONSTRAINT sce_once_per_owner UNIQUE (stat_cat,owner,value)
118 );
119
120 CREATE TABLE asset.stat_cat_entry_copy_map (
121         id              BIGSERIAL       PRIMARY KEY,
122         stat_cat        INT             NOT NULL,
123         stat_cat_entry  INT             NOT NULL,
124         owning_copy     BIGINT          NOT NULL,
125         CONSTRAINT sce_once_per_copy UNIQUE (owning_copy,stat_cat)
126 );
127
128 CREATE TABLE asset.copy_note (
129         id              BIGSERIAL                       PRIMARY KEY,
130         owning_copy     BIGINT                          NOT NULL,
131         creator         BIGINT                          NOT NULL,
132         create_date     TIMESTAMP WITH TIME ZONE        DEFAULT NOW(),
133         pub             BOOL                            NOT NULL DEFAULT FALSE,
134         title           TEXT                            NOT NULL,
135         value           TEXT                            NOT NULL
136 );
137 CREATE INDEX asset_copy_note_creator_idx ON asset.copy_note ( creator );
138
139 CREATE TABLE asset.uri (
140     id  SERIAL  PRIMARY KEY,
141     href    TEXT    NOT NULL,
142     label   TEXT,
143     use_restriction TEXT,
144     active  BOOL    NOT NULL DEFAULT TRUE
145 );
146
147 CREATE TABLE asset.call_number (
148         id              bigserial PRIMARY KEY,
149         creator         BIGINT                          NOT NULL,
150         create_date     TIMESTAMP WITH TIME ZONE        DEFAULT NOW(),
151         editor          BIGINT                          NOT NULL,
152         edit_date       TIMESTAMP WITH TIME ZONE        DEFAULT NOW(),
153         record          bigint                          NOT NULL,
154         owning_lib      INT                             NOT NULL,
155         label           TEXT                            NOT NULL,
156         deleted         BOOL                            NOT NULL DEFAULT FALSE
157 );
158 CREATE INDEX asset_call_number_record_idx ON asset.call_number (record);
159 CREATE INDEX asset_call_number_creator_idx ON asset.call_number (creator);
160 CREATE INDEX asset_call_number_editor_idx ON asset.call_number (editor);
161 CREATE INDEX asset_call_number_dewey_idx ON asset.call_number (public.call_number_dewey(label));
162 CREATE INDEX asset_call_number_upper_label_id_owning_lib_idx ON asset.call_number (upper(label),id,owning_lib);
163 CREATE UNIQUE INDEX asset_call_number_label_once_per_lib ON asset.call_number (record, owning_lib, label) WHERE deleted IS FALSE;
164 CREATE RULE protect_cn_delete AS ON DELETE TO asset.call_number DO INSTEAD UPDATE asset.call_number SET deleted = TRUE WHERE OLD.id = asset.call_number.id;
165
166 CREATE TABLE asset.uri_call_number_map (
167     id          BIGSERIAL   PRIMARY KEY,
168     uri         INT         NOT NULL REFERENCES asset.uri (id),
169     call_number INT         NOT NULL REFERENCES asset.call_number (id),
170     CONSTRAINT uri_cn_once UNIQUE (uri,call_number)
171 );
172 CREATE INDEX asset_uri_call_number_map_cn_idx ON asset.uri_call_number_map (call_number);
173
174 CREATE TABLE asset.call_number_note (
175         id              BIGSERIAL                       PRIMARY KEY,
176         call_number     BIGINT                          NOT NULL,
177         creator         BIGINT                          NOT NULL,
178         create_date     TIMESTAMP WITH TIME ZONE        DEFAULT NOW(),
179         pub             BOOL                            NOT NULL DEFAULT FALSE,
180         title           TEXT                            NOT NULL,
181         value           TEXT                            NOT NULL
182 );
183 CREATE INDEX asset_call_number_note_creator_idx ON asset.call_number_note ( creator );
184
185 CREATE VIEW stats.fleshed_copy AS 
186         SELECT  cp.*,
187                 CAST(cp.create_date AS DATE) AS create_date_day,
188                 CAST(cp.edit_date AS DATE) AS edit_date_day,
189                 DATE_TRUNC('hour', cp.create_date) AS create_date_hour,
190                 DATE_TRUNC('hour', cp.edit_date) AS edit_date_hour,
191                 cn.label AS call_number_label,
192                 cn.owning_lib,
193                 rd.item_lang,
194                 rd.item_type,
195                 rd.item_form
196         FROM    asset.copy cp
197                 JOIN asset.call_number cn ON (cp.call_number = cn.id)
198                 JOIN metabib.rec_descriptor rd ON (rd.record = cn.record);
199
200 CREATE VIEW stats.fleshed_call_number AS 
201         SELECT  cn.*,
202                 CAST(cn.create_date AS DATE) AS create_date_day,
203                 CAST(cn.edit_date AS DATE) AS edit_date_day,
204                 DATE_TRUNC('hour', cn.create_date) AS create_date_hour,
205                 DATE_TRUNC('hour', cn.edit_date) AS edit_date_hour,
206                 rd.item_lang,
207                 rd.item_type,
208                 rd.item_form
209         FROM    asset.call_number cn
210                 JOIN metabib.rec_descriptor rd ON (rd.record = cn.record);
211
212 COMMIT;
213