]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/040.schema.asset.sql
Add new status_changed_time to CREATE statement for asset.copy,
[working/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         dummy_isbn      TEXT,
64         status_changed_time TIMESTAMP WITH TIME ZONE
65 );
66 CREATE UNIQUE INDEX copy_barcode_key ON asset.copy (barcode) WHERE deleted IS FALSE;
67 CREATE INDEX cp_cn_idx ON asset.copy (call_number);
68 CREATE INDEX cp_avail_cn_idx ON asset.copy (call_number);
69 CREATE INDEX cp_creator_idx  ON asset.copy ( creator );
70 CREATE INDEX cp_editor_idx   ON asset.copy ( editor );
71 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;
72
73 CREATE OR REPLACE FUNCTION asset.acp_status_changed()
74 RETURNS TRIGGER AS $$
75 BEGIN
76     IF NEW.status <> OLD.status THEN
77         NEW.status_changed_time := now();
78     END IF;
79     RETURN NEW;
80 END;
81 $$ LANGUAGE plpgsql;
82
83 CREATE TRIGGER acp_status_changed_trig
84     BEFORE UPDATE ON asset.copy
85     FOR EACH ROW EXECUTE PROCEDURE asset.acp_status_changed();
86
87 CREATE TABLE asset.copy_transparency (
88         id              SERIAL          PRIMARY KEY,
89         deposit_amount  NUMERIC(6,2),
90         owner           INT             NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
91         circ_lib        INT             REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
92         loan_duration   INT             CHECK ( loan_duration IN (1,2,3) ),
93         fine_level      INT             CHECK ( fine_level IN (1,2,3) ),
94         holdable        BOOL,
95         circulate       BOOL,
96         deposit         BOOL,
97         ref             BOOL,
98         opac_visible    BOOL,
99         circ_modifier   TEXT,
100         circ_as_type    TEXT,
101         name            TEXT            NOT NULL,
102         CONSTRAINT scte_name_once_per_lib UNIQUE (owner,name)
103 );
104
105 CREATE TABLE asset.copy_transparency_map (
106         id              BIGSERIAL       PRIMARY KEY,
107         transparency    INT     NOT NULL REFERENCES asset.copy_transparency (id) DEFERRABLE INITIALLY DEFERRED,
108         target_copy     INT     NOT NULL UNIQUE REFERENCES asset.copy (id) DEFERRABLE INITIALLY DEFERRED
109 );
110 CREATE INDEX cp_tr_cp_idx ON asset.copy_transparency_map (transparency);
111
112 CREATE TABLE asset.stat_cat_entry_transparency_map (
113         id                      BIGSERIAL       PRIMARY KEY,
114         stat_cat                INT             NOT NULL, -- needs ON DELETE CASCADE
115         stat_cat_entry          INT             NOT NULL, -- needs ON DELETE CASCADE
116         owning_transparency     INT             NOT NULL, -- needs ON DELETE CASCADE
117         CONSTRAINT scte_once_per_trans UNIQUE (owning_transparency,stat_cat)
118 );
119
120 CREATE TABLE asset.stat_cat (
121         id              SERIAL  PRIMARY KEY,
122         owner           INT     NOT NULL,
123         opac_visible    BOOL    NOT NULL DEFAULT FALSE,
124         name            TEXT    NOT NULL,
125         CONSTRAINT sc_once_per_owner UNIQUE (owner,name)
126 );
127
128 CREATE TABLE asset.stat_cat_entry (
129         id              SERIAL  PRIMARY KEY,
130         stat_cat        INT     NOT NULL,
131         owner           INT     NOT NULL,
132         value           TEXT    NOT NULL,
133         CONSTRAINT sce_once_per_owner UNIQUE (stat_cat,owner,value)
134 );
135
136 CREATE TABLE asset.stat_cat_entry_copy_map (
137         id              BIGSERIAL       PRIMARY KEY,
138         stat_cat        INT             NOT NULL,
139         stat_cat_entry  INT             NOT NULL,
140         owning_copy     BIGINT          NOT NULL,
141         CONSTRAINT sce_once_per_copy UNIQUE (owning_copy,stat_cat)
142 );
143
144 CREATE TABLE asset.copy_note (
145         id              BIGSERIAL                       PRIMARY KEY,
146         owning_copy     BIGINT                          NOT NULL,
147         creator         BIGINT                          NOT NULL,
148         create_date     TIMESTAMP WITH TIME ZONE        DEFAULT NOW(),
149         pub             BOOL                            NOT NULL DEFAULT FALSE,
150         title           TEXT                            NOT NULL,
151         value           TEXT                            NOT NULL
152 );
153 CREATE INDEX asset_copy_note_creator_idx ON asset.copy_note ( creator );
154
155 CREATE TABLE asset.uri (
156     id  SERIAL  PRIMARY KEY,
157     href    TEXT    NOT NULL,
158     label   TEXT,
159     use_restriction TEXT,
160     active  BOOL    NOT NULL DEFAULT TRUE
161 );
162
163 CREATE TABLE asset.call_number (
164         id              bigserial PRIMARY KEY,
165         creator         BIGINT                          NOT NULL,
166         create_date     TIMESTAMP WITH TIME ZONE        DEFAULT NOW(),
167         editor          BIGINT                          NOT NULL,
168         edit_date       TIMESTAMP WITH TIME ZONE        DEFAULT NOW(),
169         record          bigint                          NOT NULL,
170         owning_lib      INT                             NOT NULL,
171         label           TEXT                            NOT NULL,
172         deleted         BOOL                            NOT NULL DEFAULT FALSE
173 );
174 CREATE INDEX asset_call_number_record_idx ON asset.call_number (record);
175 CREATE INDEX asset_call_number_creator_idx ON asset.call_number (creator);
176 CREATE INDEX asset_call_number_editor_idx ON asset.call_number (editor);
177 CREATE INDEX asset_call_number_dewey_idx ON asset.call_number (public.call_number_dewey(label));
178 CREATE INDEX asset_call_number_upper_label_id_owning_lib_idx ON asset.call_number (upper(label),id,owning_lib);
179 CREATE UNIQUE INDEX asset_call_number_label_once_per_lib ON asset.call_number (record, owning_lib, label) WHERE deleted IS FALSE;
180 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;
181
182 CREATE TABLE asset.uri_call_number_map (
183     id          BIGSERIAL   PRIMARY KEY,
184     uri         INT         NOT NULL REFERENCES asset.uri (id),
185     call_number INT         NOT NULL REFERENCES asset.call_number (id),
186     CONSTRAINT uri_cn_once UNIQUE (uri,call_number)
187 );
188 CREATE INDEX asset_uri_call_number_map_cn_idx ON asset.uri_call_number_map (call_number);
189
190 CREATE TABLE asset.call_number_note (
191         id              BIGSERIAL                       PRIMARY KEY,
192         call_number     BIGINT                          NOT NULL,
193         creator         BIGINT                          NOT NULL,
194         create_date     TIMESTAMP WITH TIME ZONE        DEFAULT NOW(),
195         pub             BOOL                            NOT NULL DEFAULT FALSE,
196         title           TEXT                            NOT NULL,
197         value           TEXT                            NOT NULL
198 );
199 CREATE INDEX asset_call_number_note_creator_idx ON asset.call_number_note ( creator );
200
201 CREATE VIEW stats.fleshed_copy AS 
202         SELECT  cp.*,
203                 CAST(cp.create_date AS DATE) AS create_date_day,
204                 CAST(cp.edit_date AS DATE) AS edit_date_day,
205                 DATE_TRUNC('hour', cp.create_date) AS create_date_hour,
206                 DATE_TRUNC('hour', cp.edit_date) AS edit_date_hour,
207                 cn.label AS call_number_label,
208                 cn.owning_lib,
209                 rd.item_lang,
210                 rd.item_type,
211                 rd.item_form
212         FROM    asset.copy cp
213                 JOIN asset.call_number cn ON (cp.call_number = cn.id)
214                 JOIN metabib.rec_descriptor rd ON (rd.record = cn.record);
215
216 CREATE VIEW stats.fleshed_call_number AS 
217         SELECT  cn.*,
218                 CAST(cn.create_date AS DATE) AS create_date_day,
219                 CAST(cn.edit_date AS DATE) AS edit_date_day,
220                 DATE_TRUNC('hour', cn.create_date) AS create_date_hour,
221                 DATE_TRUNC('hour', cn.edit_date) AS edit_date_hour,
222                 rd.item_lang,
223                 rd.item_type,
224                 rd.item_form
225         FROM    asset.call_number cn
226                 JOIN metabib.rec_descriptor rd ON (rd.record = cn.record);
227
228 COMMIT;
229