]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/005.schema.actors.sql
Add a new boolean column usr_summary to actor.stat_cat.
[working/Evergreen.git] / Open-ILS / src / sql / Pg / 005.schema.actors.sql
1 DROP SCHEMA actor CASCADE;
2
3 BEGIN;
4 CREATE SCHEMA actor;
5 COMMENT ON SCHEMA actor IS $$
6 /*
7  * Copyright (C) 2005-2008  Equinox Software, Inc. / Georgia Public Library Service 
8  * Mike Rylander <mrylander@gmail.com>
9  *
10  * Schema: actor
11  *
12  * Holds all tables pertaining to users and libraries (org units).
13  *
14  * ****
15  *
16  * This program is free software; you can redistribute it and/or
17  * modify it under the terms of the GNU General Public License
18  * as published by the Free Software Foundation; either version 2
19  * of the License, or (at your option) any later version.
20  *
21  * This program is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24  * GNU General Public License for more details.
25  */
26 $$;
27
28 CREATE TABLE actor.usr (
29         id                      SERIAL                          PRIMARY KEY,
30         card                    INT                             UNIQUE, -- active card
31         profile                 INT                             NOT NULL, -- patron profile
32         usrname                 TEXT                            NOT NULL UNIQUE,
33         email                   TEXT,
34         passwd                  TEXT                            NOT NULL,
35         standing                INT                             NOT NULL DEFAULT 1 REFERENCES config.standing (id) DEFERRABLE INITIALLY DEFERRED,
36         ident_type              INT                             NOT NULL REFERENCES config.identification_type (id) DEFERRABLE INITIALLY DEFERRED,
37         ident_value             TEXT,
38         ident_type2             INT                             REFERENCES config.identification_type (id) DEFERRABLE INITIALLY DEFERRED,
39         ident_value2            TEXT,
40         net_access_level        INT                             NOT NULL DEFAULT 1 REFERENCES config.net_access_level (id) DEFERRABLE INITIALLY DEFERRED,
41         photo_url               TEXT,
42         prefix                  TEXT,
43         first_given_name        TEXT                            NOT NULL,
44         second_given_name       TEXT,
45         family_name             TEXT                            NOT NULL,
46         suffix                  TEXT,
47         alias                   TEXT,
48         day_phone               TEXT,
49         evening_phone           TEXT,
50         other_phone             TEXT,
51         mailing_address         INT,
52         billing_address         INT,
53         home_ou                 INT                             NOT NULL,
54         dob                     TIMESTAMP WITH TIME ZONE,
55         active                  BOOL                            NOT NULL DEFAULT TRUE,
56         master_account          BOOL                            NOT NULL DEFAULT FALSE,
57         super_user              BOOL                            NOT NULL DEFAULT FALSE,
58         barred                  BOOL                            NOT NULL DEFAULT FALSE,
59         deleted                 BOOL                            NOT NULL DEFAULT FALSE,
60         juvenile                BOOL                            NOT NULL DEFAULT FALSE,
61         usrgroup                SERIAL                          NOT NULL,
62         claims_returned_count   INT                             NOT NULL DEFAULT 0,
63         credit_forward_balance  NUMERIC(6,2)                    NOT NULL DEFAULT 0.00,
64         last_xact_id            TEXT                            NOT NULL DEFAULT 'none',
65         alert_message           TEXT,
66         create_date             TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
67         expire_date             TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT (now() + '3 years'::INTERVAL)
68 );
69 COMMENT ON TABLE actor.usr IS $$
70 /*
71  * Copyright (C) 2005-2008  Equinox Software, Inc. / Georgia Public Library Service 
72  * Mike Rylander <mrylander@gmail.com>
73  *
74  * User objects
75  *
76  * This table contains the core User objects that describe both
77  * staff members and patrons.  The difference between the two
78  * types of users is based on the user's permissions.
79  *
80  * ****
81  *
82  * This program is free software; you can redistribute it and/or
83  * modify it under the terms of the GNU General Public License
84  * as published by the Free Software Foundation; either version 2
85  * of the License, or (at your option) any later version.
86  *
87  * This program is distributed in the hope that it will be useful,
88  * but WITHOUT ANY WARRANTY; without even the implied warranty of
89  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
90  * GNU General Public License for more details.
91  */
92 $$;
93
94 CREATE INDEX actor_usr_home_ou_idx ON actor.usr (home_ou);
95 CREATE INDEX actor_usr_mailing_address_idx ON actor.usr (mailing_address);
96 CREATE INDEX actor_usr_billing_address_idx ON actor.usr (billing_address);
97
98 CREATE INDEX actor_usr_first_given_name_idx ON actor.usr (lower(first_given_name));
99 CREATE INDEX actor_usr_second_given_name_idx ON actor.usr (lower(second_given_name));
100 CREATE INDEX actor_usr_family_name_idx ON actor.usr (lower(family_name));
101
102 CREATE INDEX actor_usr_email_idx ON actor.usr (lower(email));
103
104 CREATE INDEX actor_usr_day_phone_idx ON actor.usr (lower(day_phone));
105 CREATE INDEX actor_usr_evening_phone_idx ON actor.usr (lower(evening_phone));
106 CREATE INDEX actor_usr_other_phone_idx ON actor.usr (lower(other_phone));
107
108 CREATE INDEX actor_usr_ident_value_idx ON actor.usr (lower(ident_value));
109 CREATE INDEX actor_usr_ident_value2_idx ON actor.usr (lower(ident_value2));
110
111 CREATE FUNCTION actor.crypt_pw_insert () RETURNS TRIGGER AS $$
112         BEGIN
113                 NEW.passwd = MD5( NEW.passwd );
114                 RETURN NEW;
115         END;
116 $$ LANGUAGE PLPGSQL;
117
118 CREATE FUNCTION actor.crypt_pw_update () RETURNS TRIGGER AS $$
119         BEGIN
120                 IF NEW.passwd <> OLD.passwd THEN
121                         NEW.passwd = MD5( NEW.passwd );
122                 END IF;
123                 RETURN NEW;
124         END;
125 $$ LANGUAGE PLPGSQL;
126
127 CREATE TRIGGER actor_crypt_pw_update_trigger
128         BEFORE UPDATE ON actor.usr FOR EACH ROW
129         EXECUTE PROCEDURE actor.crypt_pw_update ();
130
131 CREATE TRIGGER actor_crypt_pw_insert_trigger
132         BEFORE INSERT ON actor.usr FOR EACH ROW
133         EXECUTE PROCEDURE actor.crypt_pw_insert ();
134
135 CREATE RULE protect_user_delete AS ON DELETE TO actor.usr DO INSTEAD UPDATE actor.usr SET deleted = TRUE WHERE OLD.id = actor.usr.id;
136
137 CREATE TABLE actor.usr_note (
138         id              BIGSERIAL                       PRIMARY KEY,
139         usr             BIGINT                          NOT NULL REFERENCES actor.usr ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
140         creator         BIGINT                          NOT NULL REFERENCES actor.usr ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
141         create_date     TIMESTAMP WITH TIME ZONE        DEFAULT NOW(),
142         pub             BOOL                            NOT NULL DEFAULT FALSE,
143         title           TEXT                            NOT NULL,
144         value           TEXT                            NOT NULL
145 );
146 CREATE INDEX actor_usr_note_usr_idx ON actor.usr_note (usr);
147
148 CREATE TABLE actor.usr_setting (
149         id      BIGSERIAL       PRIMARY KEY,
150         usr     INT             NOT NULL REFERENCES actor.usr ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
151         name    TEXT            NOT NULL,
152         value   TEXT            NOT NULL,
153         CONSTRAINT usr_once_per_key UNIQUE (usr,name)
154 );
155 COMMENT ON TABLE actor.usr_setting IS $$
156 /*
157  * Copyright (C) 2005-2008  Equinox Software, Inc. / Georgia Public Library Service 
158  * Mike Rylander <mrylander@gmail.com>
159  *
160  * User settings
161  *
162  * This table contains any arbitrary settings that a client
163  * program would like to save for a user.
164  *
165  * ****
166  *
167  * This program is free software; you can redistribute it and/or
168  * modify it under the terms of the GNU General Public License
169  * as published by the Free Software Foundation; either version 2
170  * of the License, or (at your option) any later version.
171  *
172  * This program is distributed in the hope that it will be useful,
173  * but WITHOUT ANY WARRANTY; without even the implied warranty of
174  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
175  * GNU General Public License for more details.
176  */
177 $$;
178
179 CREATE INDEX actor_usr_setting_usr_idx ON actor.usr_setting (usr);
180
181
182 CREATE TABLE actor.stat_cat (
183         id              SERIAL  PRIMARY KEY,
184         owner           INT     NOT NULL,
185         name            TEXT    NOT NULL,
186         opac_visible    BOOL NOT NULL DEFAULT FALSE,
187         usr_summary     BOOL NOT NULL DEFAULT FALSE,
188         CONSTRAINT sc_once_per_owner UNIQUE (owner,name)
189 );
190 COMMENT ON TABLE actor.stat_cat IS $$
191 /*
192  * Copyright (C) 2005-2008  Equinox Software, Inc. / Georgia Public Library Service 
193  * Mike Rylander <mrylander@gmail.com>
194  *
195  * User Statistical Catagories
196  *
197  * Local data collected about Users is placed into a Statistical
198  * Catagory.  Here's where those catagories are defined.
199  *
200  * ****
201  *
202  * This program is free software; you can redistribute it and/or
203  * modify it under the terms of the GNU General Public License
204  * as published by the Free Software Foundation; either version 2
205  * of the License, or (at your option) any later version.
206  *
207  * This program is distributed in the hope that it will be useful,
208  * but WITHOUT ANY WARRANTY; without even the implied warranty of
209  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
210  * GNU General Public License for more details.
211  */
212 $$;
213
214
215 CREATE TABLE actor.stat_cat_entry (
216         id              SERIAL  PRIMARY KEY,
217         stat_cat        INT     NOT NULL,
218         owner           INT     NOT NULL,
219         value           TEXT    NOT NULL,
220         CONSTRAINT sce_once_per_owner UNIQUE (stat_cat,owner,value)
221 );
222 COMMENT ON TABLE actor.stat_cat_entry IS $$
223 /*
224  * Copyright (C) 2005-2008  Equinox Software, Inc. / Georgia Public Library Service 
225  * Mike Rylander <mrylander@gmail.com>
226  *
227  * User Statistical Catagory Entries
228  *
229  * Local data collected about Users is placed into a Statistical
230  * Catagory.  Each library can create entries into any of its own
231  * stat_cats, its ancestors' stat_cats, or its descendants' stat_cats.
232  *
233  *
234  * ****
235  *
236  * This program is free software; you can redistribute it and/or
237  * modify it under the terms of the GNU General Public License
238  * as published by the Free Software Foundation; either version 2
239  * of the License, or (at your option) any later version.
240  *
241  * This program is distributed in the hope that it will be useful,
242  * but WITHOUT ANY WARRANTY; without even the implied warranty of
243  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
244  * GNU General Public License for more details.
245  */
246 $$;
247
248
249 CREATE TABLE actor.stat_cat_entry_usr_map (
250         id              BIGSERIAL       PRIMARY KEY,
251         stat_cat_entry  TEXT            NOT NULL,
252         stat_cat        INT             NOT NULL,
253         target_usr      INT             NOT NULL,
254         CONSTRAINT sc_once_per_usr UNIQUE (target_usr,stat_cat)
255 );
256 COMMENT ON TABLE actor.stat_cat_entry_usr_map IS $$
257 /*
258  * Copyright (C) 2005-2008  Equinox Software, Inc. / Georgia Public Library Service 
259  * Mike Rylander <mrylander@gmail.com>
260  *
261  * Statistical Catagory Entry to User map
262  *
263  * Records the stat_cat entries for each user.
264  *
265  *
266  * ****
267  *
268  * This program is free software; you can redistribute it and/or
269  * modify it under the terms of the GNU General Public License
270  * as published by the Free Software Foundation; either version 2
271  * of the License, or (at your option) any later version.
272  *
273  * This program is distributed in the hope that it will be useful,
274  * but WITHOUT ANY WARRANTY; without even the implied warranty of
275  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
276  * GNU General Public License for more details.
277  */
278 $$;
279
280 CREATE INDEX actor_stat_cat_entry_usr_idx ON actor.stat_cat_entry_usr_map (target_usr);
281
282 CREATE TABLE actor.card (
283         id      SERIAL  PRIMARY KEY,
284         usr     INT     NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
285         barcode TEXT    NOT NULL UNIQUE,
286         active  BOOL    NOT NULL DEFAULT TRUE
287 );
288 COMMENT ON TABLE actor.card IS $$
289 /*
290  * Copyright (C) 2005-2008  Equinox Software, Inc. / Georgia Public Library Service 
291  * Mike Rylander <mrylander@gmail.com>
292  *
293  * Library Cards
294  *
295  * Each User has one or more library cards.  The current "main"
296  * card is linked to here from the actor.usr table, and it is up
297  * to the consortium policy whether more than one card can be
298  * active for any one user at a given time.
299  *
300  *
301  * ****
302  *
303  * This program is free software; you can redistribute it and/or
304  * modify it under the terms of the GNU General Public License
305  * as published by the Free Software Foundation; either version 2
306  * of the License, or (at your option) any later version.
307  *
308  * This program is distributed in the hope that it will be useful,
309  * but WITHOUT ANY WARRANTY; without even the implied warranty of
310  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
311  * GNU General Public License for more details.
312  */
313 $$;
314
315 CREATE INDEX actor_card_usr_idx ON actor.card (usr);
316
317 CREATE TABLE actor.org_unit_type (
318         id              SERIAL  PRIMARY KEY,
319         name            TEXT    NOT NULL,
320         opac_label      TEXT    NOT NULL,
321         depth           INT     NOT NULL,
322         parent          INT     REFERENCES actor.org_unit_type (id) DEFERRABLE INITIALLY DEFERRED,
323         can_have_vols   BOOL    NOT NULL DEFAULT TRUE,
324         can_have_users  BOOL    NOT NULL DEFAULT TRUE
325 );
326 CREATE INDEX actor_org_unit_type_parent_idx ON actor.org_unit_type (parent);
327
328 CREATE TABLE actor.org_unit (
329         id              SERIAL  PRIMARY KEY,
330         parent_ou       INT     REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
331         ou_type         INT     NOT NULL REFERENCES actor.org_unit_type (id) DEFERRABLE INITIALLY DEFERRED,
332         ill_address     INT,
333         holds_address   INT,
334         mailing_address INT,
335         billing_address INT,
336         shortname       TEXT    NOT NULL UNIQUE,
337         name            TEXT    NOT NULL UNIQUE,
338         email           TEXT,
339         phone           TEXT,
340         opac_visible    BOOL    NOT NULL DEFAULT TRUE
341 );
342 CREATE INDEX actor_org_unit_parent_ou_idx ON actor.org_unit (parent_ou);
343 CREATE INDEX actor_org_unit_ou_type_idx ON actor.org_unit (ou_type);
344 CREATE INDEX actor_org_unit_ill_address_idx ON actor.org_unit (ill_address);
345 CREATE INDEX actor_org_unit_billing_address_idx ON actor.org_unit (billing_address);
346 CREATE INDEX actor_org_unit_mailing_address_idx ON actor.org_unit (mailing_address);
347 CREATE INDEX actor_org_unit_holds_address_idx ON actor.org_unit (holds_address);
348
349 CREATE TABLE actor.org_lasso (
350     id      SERIAL  PRIMARY KEY,
351     name        TEXT    UNIQUE
352 );
353
354 CREATE TABLE actor.org_lasso_map (
355     id          SERIAL  PRIMARY KEY,
356     lasso       INT     NOT NULL REFERENCES actor.org_lasso (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
357     org_unit    INT     NOT NULL REFERENCES actor.org_unit (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED
358 );
359 CREATE UNIQUE INDEX ou_lasso_lasso_ou_idx ON actor.org_lasso_map (lasso, org_unit);
360 CREATE INDEX ou_lasso_org_unit_idx ON actor.org_lasso_map (org_unit);
361
362 CREATE TABLE actor.org_unit_proximity (
363         id              BIGSERIAL       PRIMARY KEY,
364         from_org        INT,
365         to_org          INT,
366         prox            INT
367 );
368 CREATE INDEX from_prox_idx ON actor.org_unit_proximity (from_org);
369
370 CREATE TABLE actor.hours_of_operation (
371         id              INT     PRIMARY KEY REFERENCES actor.org_unit (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
372         dow_0_open      TIME    NOT NULL DEFAULT '09:00',
373         dow_0_close     TIME    NOT NULL DEFAULT '17:00',
374         dow_1_open      TIME    NOT NULL DEFAULT '09:00',
375         dow_1_close     TIME    NOT NULL DEFAULT '17:00',
376         dow_2_open      TIME    NOT NULL DEFAULT '09:00',
377         dow_2_close     TIME    NOT NULL DEFAULT '17:00',
378         dow_3_open      TIME    NOT NULL DEFAULT '09:00',
379         dow_3_close     TIME    NOT NULL DEFAULT '17:00',
380         dow_4_open      TIME    NOT NULL DEFAULT '09:00',
381         dow_4_close     TIME    NOT NULL DEFAULT '17:00',
382         dow_5_open      TIME    NOT NULL DEFAULT '09:00',
383         dow_5_close     TIME    NOT NULL DEFAULT '17:00',
384         dow_6_open      TIME    NOT NULL DEFAULT '09:00',
385         dow_6_close     TIME    NOT NULL DEFAULT '17:00'
386 );
387
388 CREATE TABLE actor.org_unit_closed (
389         id              SERIAL                          PRIMARY KEY,
390         org_unit        INT                             NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
391         close_start     TIMESTAMP WITH TIME ZONE        NOT NULL,
392         close_end       TIMESTAMP WITH TIME ZONE        NOT NULL,
393         reason          TEXT
394 );
395
396 -- Workstation registration...
397 CREATE TABLE actor.workstation (
398         id              SERIAL  PRIMARY KEY,
399         name            TEXT    NOT NULL UNIQUE,
400         owning_lib      INT     NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED
401 );
402
403 CREATE TABLE actor.usr_org_unit_opt_in (
404         id              SERIAL                          PRIMARY KEY,
405         org_unit        INT                             NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
406         usr             INT                             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
407         staff           INT                             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
408         opt_in_ts       TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT NOW(),
409         opt_in_ws       INT                             NOT NULL REFERENCES actor.workstation (id) DEFERRABLE INITIALLY DEFERRED,
410         CONSTRAINT usr_opt_in_once_per_org_unit UNIQUE (usr,org_unit)
411 );
412
413 CREATE TABLE actor.org_unit_setting (
414         id              BIGSERIAL       PRIMARY KEY,
415         org_unit        INT             NOT NULL REFERENCES actor.org_unit ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
416         name            TEXT    NOT NULL REFERENCES config.org_unit_setting_type DEFERRABLE INITIALLY DEFERRED,
417         value           TEXT            NOT NULL,
418         CONSTRAINT ou_once_per_key UNIQUE (org_unit,name)
419 );
420 COMMENT ON TABLE actor.org_unit_setting IS $$
421 /*
422  * Copyright (C) 2005-2008  Equinox Software, Inc. / Georgia Public Library Service 
423  * Mike Rylander <mrylander@gmail.com>
424  *
425  * Org Unit settings
426  *
427  * This table contains any arbitrary settings that a client
428  * program would like to save for an org unit.
429  *
430  * ****
431  *
432  * This program is free software; you can redistribute it and/or
433  * modify it under the terms of the GNU General Public License
434  * as published by the Free Software Foundation; either version 2
435  * of the License, or (at your option) any later version.
436  *
437  * This program is distributed in the hope that it will be useful,
438  * but WITHOUT ANY WARRANTY; without even the implied warranty of
439  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
440  * GNU General Public License for more details.
441  */
442 $$;
443
444 CREATE INDEX actor_org_unit_setting_usr_idx ON actor.org_unit_setting (org_unit);
445
446
447 CREATE TABLE actor.usr_address (
448         id                      SERIAL  PRIMARY KEY,
449         valid                   BOOL    NOT NULL DEFAULT TRUE,
450         within_city_limits      BOOL    NOT NULL DEFAULT TRUE,
451         address_type            TEXT    NOT NULL DEFAULT 'MAILING',
452         usr                     INT     NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
453         street1                 TEXT    NOT NULL,
454         street2                 TEXT,
455         city                    TEXT    NOT NULL,
456         county                  TEXT,
457         state                   TEXT    NOT NULL,
458         country                 TEXT    NOT NULL,
459         post_code               TEXT    NOT NULL,
460     pending         BOOL    NOT NULL DEFAULT FALSE,
461         replaces            INT REFERENCES actor.usr_address (id) DEFERRABLE INITIALLY DEFERRED
462 );
463
464 CREATE INDEX actor_usr_addr_usr_idx ON actor.usr_address (usr);
465
466 CREATE INDEX actor_usr_addr_street1_idx ON actor.usr_address (lower(street1));
467 CREATE INDEX actor_usr_addr_street2_idx ON actor.usr_address (lower(street2));
468
469 CREATE INDEX actor_usr_addr_city_idx ON actor.usr_address (lower(city));
470 CREATE INDEX actor_usr_addr_state_idx ON actor.usr_address (lower(state));
471 CREATE INDEX actor_usr_addr_post_code_idx ON actor.usr_address (lower(post_code));
472
473
474 CREATE TABLE actor.org_address (
475         id              SERIAL  PRIMARY KEY,
476         valid           BOOL    NOT NULL DEFAULT TRUE,
477         address_type    TEXT    NOT NULL DEFAULT 'MAILING',
478         org_unit        INT     NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
479         street1         TEXT    NOT NULL,
480         street2         TEXT,
481         city            TEXT    NOT NULL,
482         county          TEXT,
483         state           TEXT    NOT NULL,
484         country         TEXT    NOT NULL,
485         post_code       TEXT    NOT NULL
486 );
487
488 CREATE INDEX actor_org_address_org_unit_idx ON actor.org_address (org_unit);
489
490 CREATE OR REPLACE FUNCTION public.first5 ( TEXT ) RETURNS TEXT AS $$
491         SELECT SUBSTRING( $1, 1, 5);
492 $$ LANGUAGE SQL;
493
494 CREATE TABLE actor.usr_standing_penalty (
495         id                      SERIAL  PRIMARY KEY,
496         org_unit                INT     NOT NULL REFERENCES actor.org_unit (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
497         usr                     INT     NOT NULL REFERENCES actor.usr (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
498         standing_penalty        INT     NOT NULL REFERENCES config.standing_penalty (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
499         staff                   INT     REFERENCES actor.usr (id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED,
500         set_date                TIMESTAMP WITH TIME ZONE        DEFAULT NOW(),
501         stop_date               TIMESTAMP WITH TIME ZONE,
502         note                    TEXT
503 );
504 COMMENT ON TABLE actor.usr_standing_penalty IS $$
505 /*
506  * Copyright (C) 2005-2008  Equinox Software, Inc. / Georgia Public Library Service 
507  * Mike Rylander <mrylander@gmail.com>
508  *
509  * User standing penalties
510  *
511  * ****
512  *
513  * This program is free software; you can redistribute it and/or
514  * modify it under the terms of the GNU General Public License
515  * as published by the Free Software Foundation; either version 2
516  * of the License, or (at your option) any later version.
517  *
518  * This program is distributed in the hope that it will be useful,
519  * but WITHOUT ANY WARRANTY; without even the implied warranty of
520  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
521  * GNU General Public License for more details.
522  */
523 $$;
524
525 CREATE INDEX actor_usr_standing_penalty_usr_idx ON actor.usr_standing_penalty (usr);
526
527
528 COMMIT;