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