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