]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/005.schema.actors.sql
1. Add two new columns to actor.org_unit: spend_warning_percent and
[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         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 REFERENCES config.usr_setting_type (name) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,
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         fiscal_calendar INT     NOT NULL DEFAULT 1,  -- foreign key constraint to be added later
344         spend_warning_percent INT CONSTRAINT spend_warning_percent_limit
345                                       CHECK( spend_warning_percent <= 100 ),
346         spend_limit_percent   INT CONSTRAINT spend_limit_percent_limit
347                                       CHECK( spend_limit_percent <= 100 )
348 );
349 CREATE INDEX actor_org_unit_parent_ou_idx ON actor.org_unit (parent_ou);
350 CREATE INDEX actor_org_unit_ou_type_idx ON actor.org_unit (ou_type);
351 CREATE INDEX actor_org_unit_ill_address_idx ON actor.org_unit (ill_address);
352 CREATE INDEX actor_org_unit_billing_address_idx ON actor.org_unit (billing_address);
353 CREATE INDEX actor_org_unit_mailing_address_idx ON actor.org_unit (mailing_address);
354 CREATE INDEX actor_org_unit_holds_address_idx ON actor.org_unit (holds_address);
355
356 CREATE TABLE actor.org_lasso (
357     id      SERIAL  PRIMARY KEY,
358     name        TEXT    UNIQUE
359 );
360
361 CREATE TABLE actor.org_lasso_map (
362     id          SERIAL  PRIMARY KEY,
363     lasso       INT     NOT NULL REFERENCES actor.org_lasso (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
364     org_unit    INT     NOT NULL REFERENCES actor.org_unit (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED
365 );
366 CREATE UNIQUE INDEX ou_lasso_lasso_ou_idx ON actor.org_lasso_map (lasso, org_unit);
367 CREATE INDEX ou_lasso_org_unit_idx ON actor.org_lasso_map (org_unit);
368
369 CREATE TABLE actor.org_unit_proximity (
370         id              BIGSERIAL       PRIMARY KEY,
371         from_org        INT,
372         to_org          INT,
373         prox            INT
374 );
375 CREATE INDEX from_prox_idx ON actor.org_unit_proximity (from_org);
376
377 CREATE TABLE actor.hours_of_operation (
378         id              INT     PRIMARY KEY REFERENCES actor.org_unit (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
379         dow_0_open      TIME    NOT NULL DEFAULT '09:00',
380         dow_0_close     TIME    NOT NULL DEFAULT '17:00',
381         dow_1_open      TIME    NOT NULL DEFAULT '09:00',
382         dow_1_close     TIME    NOT NULL DEFAULT '17:00',
383         dow_2_open      TIME    NOT NULL DEFAULT '09:00',
384         dow_2_close     TIME    NOT NULL DEFAULT '17:00',
385         dow_3_open      TIME    NOT NULL DEFAULT '09:00',
386         dow_3_close     TIME    NOT NULL DEFAULT '17:00',
387         dow_4_open      TIME    NOT NULL DEFAULT '09:00',
388         dow_4_close     TIME    NOT NULL DEFAULT '17:00',
389         dow_5_open      TIME    NOT NULL DEFAULT '09:00',
390         dow_5_close     TIME    NOT NULL DEFAULT '17:00',
391         dow_6_open      TIME    NOT NULL DEFAULT '09:00',
392         dow_6_close     TIME    NOT NULL DEFAULT '17:00'
393 );
394 COMMENT ON TABLE actor.hours_of_operation IS $$
395 When does this org_unit usually open and close?  (Variations
396 are expressed in the actor.org_unit_closed table.)
397 $$;
398 COMMENT ON COLUMN actor.hours_of_operation.dow_0_open IS $$
399 When does this org_unit open on Monday?
400 $$;
401 COMMENT ON COLUMN actor.hours_of_operation.dow_0_close IS $$
402 When does this org_unit close on Monday?
403 $$;
404 COMMENT ON COLUMN actor.hours_of_operation.dow_1_open IS $$
405 When does this org_unit open on Tuesday?
406 $$;
407 COMMENT ON COLUMN actor.hours_of_operation.dow_1_close IS $$
408 When does this org_unit close on Tuesday?
409 $$;
410 COMMENT ON COLUMN actor.hours_of_operation.dow_2_open IS $$
411 When does this org_unit open on Wednesday?
412 $$;
413 COMMENT ON COLUMN actor.hours_of_operation.dow_2_close IS $$
414 When does this org_unit close on Wednesday?
415 $$;
416 COMMENT ON COLUMN actor.hours_of_operation.dow_3_open IS $$
417 When does this org_unit open on Thursday?
418 $$;
419 COMMENT ON COLUMN actor.hours_of_operation.dow_3_close IS $$
420 When does this org_unit close on Thursday?
421 $$;
422 COMMENT ON COLUMN actor.hours_of_operation.dow_4_open IS $$
423 When does this org_unit open on Friday?
424 $$;
425 COMMENT ON COLUMN actor.hours_of_operation.dow_4_close IS $$
426 When does this org_unit close on Friday?
427 $$;
428 COMMENT ON COLUMN actor.hours_of_operation.dow_5_open IS $$
429 When does this org_unit open on Saturday?
430 $$;
431 COMMENT ON COLUMN actor.hours_of_operation.dow_5_close IS $$
432 When does this org_unit close on Saturday?
433 $$;
434 COMMENT ON COLUMN actor.hours_of_operation.dow_6_open IS $$
435 When does this org_unit open on Sunday?
436 $$;
437 COMMENT ON COLUMN actor.hours_of_operation.dow_6_close IS $$
438 When does this org_unit close on Sunday?
439 $$;
440
441 CREATE TABLE actor.org_unit_closed (
442         id              SERIAL                          PRIMARY KEY,
443         org_unit        INT                             NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
444         close_start     TIMESTAMP WITH TIME ZONE        NOT NULL,
445         close_end       TIMESTAMP WITH TIME ZONE        NOT NULL,
446         reason          TEXT
447 );
448
449 -- Workstation registration...
450 CREATE TABLE actor.workstation (
451         id              SERIAL  PRIMARY KEY,
452         name            TEXT    NOT NULL UNIQUE,
453         owning_lib      INT     NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED
454 );
455
456 CREATE TABLE actor.usr_org_unit_opt_in (
457         id              SERIAL                          PRIMARY KEY,
458         org_unit        INT                             NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
459         usr             INT                             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
460         staff           INT                             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
461         opt_in_ts       TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT NOW(),
462         opt_in_ws       INT                             NOT NULL REFERENCES actor.workstation (id) DEFERRABLE INITIALLY DEFERRED,
463         CONSTRAINT usr_opt_in_once_per_org_unit UNIQUE (usr,org_unit)
464 );
465 CREATE INDEX usr_org_unit_opt_in_staff_idx ON actor.usr_org_unit_opt_in ( staff );
466
467 CREATE TABLE actor.org_unit_setting (
468         id              BIGSERIAL       PRIMARY KEY,
469         org_unit        INT             NOT NULL REFERENCES actor.org_unit ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
470         name            TEXT    NOT NULL REFERENCES config.org_unit_setting_type DEFERRABLE INITIALLY DEFERRED,
471         value           TEXT            NOT NULL,
472         CONSTRAINT ou_once_per_key UNIQUE (org_unit,name)
473 );
474 COMMENT ON TABLE actor.org_unit_setting IS $$
475 /*
476  * Copyright (C) 2005-2008  Equinox Software, Inc. / Georgia Public Library Service 
477  * Mike Rylander <mrylander@gmail.com>
478  *
479  * Org Unit settings
480  *
481  * This table contains any arbitrary settings that a client
482  * program would like to save for an org unit.
483  *
484  * ****
485  *
486  * This program is free software; you can redistribute it and/or
487  * modify it under the terms of the GNU General Public License
488  * as published by the Free Software Foundation; either version 2
489  * of the License, or (at your option) any later version.
490  *
491  * This program is distributed in the hope that it will be useful,
492  * but WITHOUT ANY WARRANTY; without even the implied warranty of
493  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
494  * GNU General Public License for more details.
495  */
496 $$;
497
498 CREATE INDEX actor_org_unit_setting_usr_idx ON actor.org_unit_setting (org_unit);
499
500
501 CREATE TABLE actor.usr_address (
502         id                      SERIAL  PRIMARY KEY,
503         valid                   BOOL    NOT NULL DEFAULT TRUE,
504         within_city_limits      BOOL    NOT NULL DEFAULT TRUE,
505         address_type            TEXT    NOT NULL DEFAULT 'MAILING',
506         usr                     INT     NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
507         street1                 TEXT    NOT NULL,
508         street2                 TEXT,
509         city                    TEXT    NOT NULL,
510         county                  TEXT,
511         state                   TEXT    NOT NULL,
512         country                 TEXT    NOT NULL,
513         post_code               TEXT    NOT NULL,
514     pending         BOOL    NOT NULL DEFAULT FALSE,
515         replaces            INT REFERENCES actor.usr_address (id) DEFERRABLE INITIALLY DEFERRED
516 );
517
518 CREATE INDEX actor_usr_addr_usr_idx ON actor.usr_address (usr);
519
520 CREATE INDEX actor_usr_addr_street1_idx ON actor.usr_address (lower(street1));
521 CREATE INDEX actor_usr_addr_street2_idx ON actor.usr_address (lower(street2));
522
523 CREATE INDEX actor_usr_addr_city_idx ON actor.usr_address (lower(city));
524 CREATE INDEX actor_usr_addr_state_idx ON actor.usr_address (lower(state));
525 CREATE INDEX actor_usr_addr_post_code_idx ON actor.usr_address (lower(post_code));
526
527
528 CREATE TABLE actor.org_address (
529         id              SERIAL  PRIMARY KEY,
530         valid           BOOL    NOT NULL DEFAULT TRUE,
531         address_type    TEXT    NOT NULL DEFAULT 'MAILING',
532         org_unit        INT     NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
533         street1         TEXT    NOT NULL,
534         street2         TEXT,
535         city            TEXT    NOT NULL,
536         county          TEXT,
537         state           TEXT    NOT NULL,
538         country         TEXT    NOT NULL,
539         post_code       TEXT    NOT NULL
540 );
541
542 CREATE INDEX actor_org_address_org_unit_idx ON actor.org_address (org_unit);
543
544 CREATE OR REPLACE FUNCTION public.first5 ( TEXT ) RETURNS TEXT AS $$
545         SELECT SUBSTRING( $1, 1, 5);
546 $$ LANGUAGE SQL;
547
548 CREATE TABLE actor.usr_standing_penalty (
549         id                      SERIAL  PRIMARY KEY,
550         org_unit                INT     NOT NULL REFERENCES actor.org_unit (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
551         usr                     INT     NOT NULL REFERENCES actor.usr (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
552         standing_penalty        INT     NOT NULL REFERENCES config.standing_penalty (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
553         staff                   INT     REFERENCES actor.usr (id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED,
554         set_date                TIMESTAMP WITH TIME ZONE        DEFAULT NOW(),
555         stop_date               TIMESTAMP WITH TIME ZONE,
556         note                    TEXT
557 );
558 COMMENT ON TABLE actor.usr_standing_penalty IS $$
559 /*
560  * Copyright (C) 2005-2008  Equinox Software, Inc. / Georgia Public Library Service 
561  * Mike Rylander <mrylander@gmail.com>
562  *
563  * User standing penalties
564  *
565  * ****
566  *
567  * This program is free software; you can redistribute it and/or
568  * modify it under the terms of the GNU General Public License
569  * as published by the Free Software Foundation; either version 2
570  * of the License, or (at your option) any later version.
571  *
572  * This program is distributed in the hope that it will be useful,
573  * but WITHOUT ANY WARRANTY; without even the implied warranty of
574  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
575  * GNU General Public License for more details.
576  */
577 $$;
578
579 CREATE INDEX actor_usr_standing_penalty_usr_idx ON actor.usr_standing_penalty (usr);
580 CREATE INDEX actor_usr_standing_penalty_staff_idx ON actor.usr_standing_penalty ( staff );
581
582
583 COMMIT;