]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/002.schema.config.sql
Protect serials from being deleted with ye olde ON DELETE rule
[working/Evergreen.git] / Open-ILS / src / sql / Pg / 002.schema.config.sql
1 /*
2  * Copyright (C) 2004-2008  Georgia Public Library Service
3  * Copyright (C) 2008  Equinox Software, Inc.
4  * Mike Rylander <miker@esilibrary.com>
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  */
17
18
19
20 DROP SCHEMA stats CASCADE;
21 DROP SCHEMA config CASCADE;
22
23 BEGIN;
24 CREATE SCHEMA stats;
25
26 CREATE SCHEMA config;
27 COMMENT ON SCHEMA config IS $$
28 /*
29  * Copyright (C) 2005  Georgia Public Library Service 
30  * Mike Rylander <mrylander@gmail.com>
31  *
32  * The config schema holds static configuration data for the
33  * Open-ILS installation.
34  *
35  * ****
36  *
37  * This program is free software; you can redistribute it and/or
38  * modify it under the terms of the GNU General Public License
39  * as published by the Free Software Foundation; either version 2
40  * of the License, or (at your option) any later version.
41  *
42  * This program is distributed in the hope that it will be useful,
43  * but WITHOUT ANY WARRANTY; without even the implied warranty of
44  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
45  * GNU General Public License for more details.
46  */
47 $$;
48
49 CREATE TABLE config.upgrade_log (
50     version         TEXT    PRIMARY KEY,
51     install_date    TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW()
52 );
53
54 INSERT INTO config.upgrade_log (version) VALUES ('0131'); -- dbs
55
56 CREATE TABLE config.bib_source (
57         id              SERIAL  PRIMARY KEY,
58         quality         INT     CHECK ( quality BETWEEN 0 AND 100 ),
59         source          TEXT    NOT NULL UNIQUE,
60         transcendant    BOOL    NOT NULL DEFAULT FALSE
61 );
62 COMMENT ON TABLE config.bib_source IS $$
63 /*
64  * Copyright (C) 2005  Georgia Public Library Service 
65  * Mike Rylander <mrylander@gmail.com>
66  *
67  * Valid sources of MARC records
68  *
69  * This is table is used to set up the relative "quality" of each
70  * MARC source, such as OCLC.
71  *
72  * ****
73  *
74  * This program is free software; you can redistribute it and/or
75  * modify it under the terms of the GNU General Public License
76  * as published by the Free Software Foundation; either version 2
77  * of the License, or (at your option) any later version.
78  *
79  * This program is distributed in the hope that it will be useful,
80  * but WITHOUT ANY WARRANTY; without even the implied warranty of
81  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
82  * GNU General Public License for more details.
83  */
84 $$;
85
86 CREATE TABLE config.standing (
87         id              SERIAL  PRIMARY KEY,
88         value           TEXT    NOT NULL UNIQUE
89 );
90 COMMENT ON TABLE config.standing IS $$
91 /*
92  * Copyright (C) 2005  Georgia Public Library Service 
93  * Mike Rylander <mrylander@gmail.com>
94  *
95  * Patron Standings
96  *
97  * This table contains the values that can be applied to a patron
98  * by a staff member.  These values should not be changed, other
99  * than for translation, as the ID column is currently a "magic
100  * number" in the source. :(
101  *
102  * ****
103  *
104  * This program is free software; you can redistribute it and/or
105  * modify it under the terms of the GNU General Public License
106  * as published by the Free Software Foundation; either version 2
107  * of the License, or (at your option) any later version.
108  *
109  * This program is distributed in the hope that it will be useful,
110  * but WITHOUT ANY WARRANTY; without even the implied warranty of
111  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
112  * GNU General Public License for more details.
113  */
114 $$;
115
116 CREATE TABLE config.standing_penalty (
117         id                      SERIAL  PRIMARY KEY,
118         name            TEXT    NOT NULL UNIQUE,
119         label           TEXT    NOT NULL,
120         block_list      TEXT,
121         org_depth       INTEGER
122 );
123 INSERT INTO config.standing_penalty (id,name,label,block_list)
124         VALUES (1,'PATRON_EXCEEDS_FINES','Patron exceeds fine threshold','CIRC|HOLD|RENEW');
125 INSERT INTO config.standing_penalty (id,name,label,block_list)
126         VALUES (2,'PATRON_EXCEEDS_OVERDUE_COUNT','Patron exceeds max overdue item threshold','CIRC|HOLD|RENEW');
127 INSERT INTO config.standing_penalty (id,name,label,block_list)
128         VALUES (3,'PATRON_EXCEEDS_CHECKOUT_COUNT','Patron exceeds max checked out item threshold','CIRC');
129 INSERT INTO config.standing_penalty (id,name,label,block_list)
130         VALUES (4,'PATRON_EXCEEDS_COLLECTIONS_WARNING','Patron exceeds pre-collections warning fine threshold','CIRC|HOLD|RENEW');
131
132 INSERT INTO config.standing_penalty (id,name,label) VALUES (20,'ALERT_NOTE','Alerting Note, no blocks');
133 INSERT INTO config.standing_penalty (id,name,label) VALUES (21,'SILENT_NOTE','Note, no blocks');
134 INSERT INTO config.standing_penalty (id,name,label,block_list) VALUES (22,'STAFF_C','Alerting block on Circ','CIRC');
135 INSERT INTO config.standing_penalty (id,name,label,block_list) VALUES (23,'STAFF_CH','Alerting block on Circ and Hold','CIRC|HOLD');
136 INSERT INTO config.standing_penalty (id,name,label,block_list) VALUES (24,'STAFF_CR','Alerting block on Circ and Renew','CIRC|RENEW');
137 INSERT INTO config.standing_penalty (id,name,label,block_list) VALUES (25,'STAFF_CHR','Alerting block on Circ, Hold and Renew','CIRC|HOLD|RENEW');
138 INSERT INTO config.standing_penalty (id,name,label,block_list) VALUES (26,'STAFF_HR','Alerting block on Hold and Renew','HOLD|RENEW');
139 INSERT INTO config.standing_penalty (id,name,label,block_list) VALUES (27,'STAFF_H','Alerting block on Hold','HOLD');
140 INSERT INTO config.standing_penalty (id,name,label,block_list) VALUES (28,'STAFF_R','Alerting block on Renew','RENEW');
141 INSERT INTO config.standing_penalty (id,name,label) VALUES (29,'INVALID_PATRON_ADDRESS','Patron has an invalid address');
142 INSERT INTO config.standing_penalty (id,name,label) VALUES (30,'PATRON_IN_COLLECTIONS','Patron has been referred to a collections agency');
143
144 SELECT SETVAL('config.standing_penalty_id_seq', 100);
145
146 CREATE TABLE config.xml_transform (
147         name            TEXT    PRIMARY KEY,
148         namespace_uri   TEXT    NOT NULL,
149         prefix          TEXT    NOT NULL,
150         xslt            TEXT    NOT NULL
151 );
152
153 CREATE TABLE config.metabib_field (
154         id              SERIAL  PRIMARY KEY,
155         field_class     TEXT    NOT NULL CHECK (lower(field_class) IN ('title','author','subject','keyword','series')),
156         name            TEXT    NOT NULL,
157         xpath           TEXT    NOT NULL,
158         weight          INT     NOT NULL DEFAULT 1,
159         format          TEXT    NOT NULL DEFAULT 'mods33',
160         search_field    BOOL    NOT NULL DEFAULT TRUE,
161         facet_field     BOOL    NOT NULL DEFAULT FALSE
162 );
163 COMMENT ON TABLE config.metabib_field IS $$
164 /*
165  * Copyright (C) 2005  Georgia Public Library Service 
166  * Mike Rylander <mrylander@gmail.com>
167  *
168  * XPath used for record indexing ingest
169  *
170  * This table contains the XPath used to chop up MODS into its
171  * indexable parts.  Each XPath entry is named and assigned to
172  * a "class" of either title, subject, author, keyword or series.
173  * 
174  *
175  * ****
176  *
177  * This program is free software; you can redistribute it and/or
178  * modify it under the terms of the GNU General Public License
179  * as published by the Free Software Foundation; either version 2
180  * of the License, or (at your option) any later version.
181  *
182  * This program is distributed in the hope that it will be useful,
183  * but WITHOUT ANY WARRANTY; without even the implied warranty of
184  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
185  * GNU General Public License for more details.
186  */
187 $$;
188
189 CREATE UNIQUE INDEX config_metabib_field_class_name_idx ON config.metabib_field (field_class, name);
190
191 CREATE TABLE config.non_cataloged_type (
192         id              SERIAL          PRIMARY KEY,
193         owning_lib      INT             NOT NULL, -- REFERENCES actor.org_unit (id),
194         name            TEXT            NOT NULL,
195         circ_duration   INTERVAL        NOT NULL DEFAULT '14 days'::INTERVAL,
196         in_house        BOOL            NOT NULL DEFAULT FALSE,
197         CONSTRAINT noncat_once_per_lib UNIQUE (owning_lib,name)
198 );
199 COMMENT ON TABLE config.non_cataloged_type IS $$
200 /*
201  * Copyright (C) 2005  Georgia Public Library Service 
202  * Mike Rylander <mrylander@gmail.com>
203  *
204  * Types of valid non-cataloged items.
205  *
206  *
207  * ****
208  *
209  * This program is free software; you can redistribute it and/or
210  * modify it under the terms of the GNU General Public License
211  * as published by the Free Software Foundation; either version 2
212  * of the License, or (at your option) any later version.
213  *
214  * This program is distributed in the hope that it will be useful,
215  * but WITHOUT ANY WARRANTY; without even the implied warranty of
216  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
217  * GNU General Public License for more details.
218  */
219 $$;
220
221 CREATE TABLE config.identification_type (
222         id              SERIAL  PRIMARY KEY,
223         name            TEXT    NOT NULL UNIQUE
224 );
225 COMMENT ON TABLE config.identification_type IS $$
226 /*
227  * Copyright (C) 2005  Georgia Public Library Service 
228  * Mike Rylander <mrylander@gmail.com>
229  *
230  * Types of valid patron identification.
231  *
232  * Each patron must display at least one valid form of identification
233  * in order to get a library card.  This table lists those forms.
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 CREATE TABLE config.rule_circ_duration (
251         id              SERIAL          PRIMARY KEY,
252         name            TEXT            NOT NULL UNIQUE CHECK ( name ~ E'^\\w+$' ),
253         extended        INTERVAL        NOT NULL,
254         normal          INTERVAL        NOT NULL,
255         shrt            INTERVAL        NOT NULL,
256         max_renewals    INT             NOT NULL
257 );
258 COMMENT ON TABLE config.rule_circ_duration IS $$
259 /*
260  * Copyright (C) 2005  Georgia Public Library Service 
261  * Mike Rylander <mrylander@gmail.com>
262  *
263  * Circulation Duration rules
264  *
265  * Each circulation is given a duration based on one of these rules.
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 TABLE config.rule_max_fine (
283     id          SERIAL          PRIMARY KEY,
284     name        TEXT            NOT NULL UNIQUE CHECK ( name ~ E'^\\w+$' ),
285     amount      NUMERIC(6,2)    NOT NULL,
286     is_percent  BOOL            NOT NULL DEFAULT FALSE
287 );
288 COMMENT ON TABLE config.rule_max_fine IS $$
289 /*
290  * Copyright (C) 2005  Georgia Public Library Service 
291  * Mike Rylander <mrylander@gmail.com>
292  *
293  * Circulation Max Fine rules
294  *
295  * Each circulation is given a maximum fine based on one of
296  * these rules.
297  * 
298  *
299  * ****
300  *
301  * This program is free software; you can redistribute it and/or
302  * modify it under the terms of the GNU General Public License
303  * as published by the Free Software Foundation; either version 2
304  * of the License, or (at your option) any later version.
305  *
306  * This program is distributed in the hope that it will be useful,
307  * but WITHOUT ANY WARRANTY; without even the implied warranty of
308  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
309  * GNU General Public License for more details.
310  */
311 $$;
312
313 CREATE TABLE config.rule_recurring_fine (
314         id                      SERIAL          PRIMARY KEY,
315         name                    TEXT            NOT NULL UNIQUE CHECK ( name ~ E'^\\w+$' ),
316         high                    NUMERIC(6,2)    NOT NULL,
317         normal                  NUMERIC(6,2)    NOT NULL,
318         low                     NUMERIC(6,2)    NOT NULL,
319         recurrence_interval     INTERVAL        NOT NULL DEFAULT '1 day'::INTERVAL
320 );
321 COMMENT ON TABLE config.rule_recurring_fine IS $$
322 /*
323  * Copyright (C) 2005  Georgia Public Library Service 
324  * Mike Rylander <mrylander@gmail.com>
325  *
326  * Circulation Recurring Fine rules
327  *
328  * Each circulation is given a recurring fine amount based on one of
329  * these rules.  The recurrence_interval should not be any shorter
330  * than the interval between runs of the fine_processor.pl script
331  * (which is run from CRON), or you could miss fines.
332  * 
333  *
334  * ****
335  *
336  * This program is free software; you can redistribute it and/or
337  * modify it under the terms of the GNU General Public License
338  * as published by the Free Software Foundation; either version 2
339  * of the License, or (at your option) any later version.
340  *
341  * This program is distributed in the hope that it will be useful,
342  * but WITHOUT ANY WARRANTY; without even the implied warranty of
343  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
344  * GNU General Public License for more details.
345  */
346 $$;
347
348
349 CREATE TABLE config.rule_age_hold_protect (
350         id      SERIAL          PRIMARY KEY,
351         name    TEXT            NOT NULL UNIQUE CHECK ( name ~ E'^\\w+$' ),
352         age     INTERVAL        NOT NULL,
353         prox    INT             NOT NULL
354 );
355 COMMENT ON TABLE config.rule_age_hold_protect IS $$
356 /*
357  * Copyright (C) 2005  Georgia Public Library Service 
358  * Mike Rylander <mrylander@gmail.com>
359  *
360  * Hold Item Age Protection rules
361  *
362  * A hold request can only capture new(ish) items when they are
363  * within a particular proximity of the home_ou of the requesting
364  * user.  The proximity ('prox' column) is calculated by counting
365  * the number of tree edges between the user's home_ou and the owning_lib
366  * of the copy that could fulfill the hold.
367  * 
368  *
369  * ****
370  *
371  * This program is free software; you can redistribute it and/or
372  * modify it under the terms of the GNU General Public License
373  * as published by the Free Software Foundation; either version 2
374  * of the License, or (at your option) any later version.
375  *
376  * This program is distributed in the hope that it will be useful,
377  * but WITHOUT ANY WARRANTY; without even the implied warranty of
378  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
379  * GNU General Public License for more details.
380  */
381 $$;
382
383 CREATE TABLE config.copy_status (
384         id              SERIAL  PRIMARY KEY,
385         name            TEXT    NOT NULL UNIQUE,
386         holdable        BOOL    NOT NULL DEFAULT FALSE,
387         opac_visible    BOOL    NOT NULL DEFAULT FALSE
388 );
389 COMMENT ON TABLE config.copy_status IS $$
390 /*
391  * Copyright (C) 2005  Georgia Public Library Service 
392  * Mike Rylander <mrylander@gmail.com>
393  *
394  * Copy Statuses
395  *
396  * The available copy statuses, and whether a copy in that
397  * status is available for hold request capture.  0 (zero) is
398  * the only special number in this set, meaning that the item
399  * is available for immediate checkout, and is counted as available
400  * in the OPAC.
401  *
402  * Statuses with an ID below 100 are not removable, and have special
403  * meaning in the code.  Do not change them except to translate the
404  * textual name.
405  *
406  * You may add and remove statuses above 100, and these can be used
407  * to remove items from normal circulation without affecting the rest
408  * of the copy's values or its location.
409  *
410  * ****
411  *
412  * This program is free software; you can redistribute it and/or
413  * modify it under the terms of the GNU General Public License
414  * as published by the Free Software Foundation; either version 2
415  * of the License, or (at your option) any later version.
416  *
417  * This program is distributed in the hope that it will be useful,
418  * but WITHOUT ANY WARRANTY; without even the implied warranty of
419  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
420  * GNU General Public License for more details.
421  */
422 $$;
423
424 CREATE TABLE config.net_access_level (
425         id      SERIAL          PRIMARY KEY,
426         name    TEXT            NOT NULL UNIQUE
427 );
428 COMMENT ON TABLE config.net_access_level IS $$
429 /*
430  * Copyright (C) 2005  Georgia Public Library Service 
431  * Mike Rylander <mrylander@gmail.com>
432  *
433  * Patron Network Access level
434  *
435  * This will be used to inform the in-library firewall of how much
436  * internet access the using patron should be allowed.
437  *
438  * ****
439  *
440  * This program is free software; you can redistribute it and/or
441  * modify it under the terms of the GNU General Public License
442  * as published by the Free Software Foundation; either version 2
443  * of the License, or (at your option) any later version.
444  *
445  * This program is distributed in the hope that it will be useful,
446  * but WITHOUT ANY WARRANTY; without even the implied warranty of
447  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
448  * GNU General Public License for more details.
449  */
450 $$;
451
452 CREATE TABLE config.audience_map (
453         code            TEXT    PRIMARY KEY,
454         value           TEXT    NOT NULL,
455         description     TEXT
456 );
457
458 CREATE TABLE config.lit_form_map (
459         code            TEXT    PRIMARY KEY,
460         value           TEXT    NOT NULL,
461         description     TEXT
462 );
463
464 CREATE TABLE config.language_map (
465         code    TEXT    PRIMARY KEY,
466         value   TEXT    NOT NULL
467 );
468
469 CREATE TABLE config.item_form_map (
470         code    TEXT    PRIMARY KEY,
471         value   TEXT    NOT NULL
472 );
473
474 CREATE TABLE config.item_type_map (
475         code    TEXT    PRIMARY KEY,
476         value   TEXT    NOT NULL
477 );
478
479 CREATE TABLE config.bib_level_map (
480         code    TEXT    PRIMARY KEY,
481         value   TEXT    NOT NULL
482 );
483
484 CREATE TABLE config.marc21_rec_type_map (
485     code        TEXT    PRIMARY KEY,
486     type_val    TEXT    NOT NULL,
487     blvl_val    TEXT    NOT NULL
488 );
489
490 CREATE TABLE config.marc21_ff_pos_map (
491     id          SERIAL  PRIMARY KEY,
492     fixed_field TEXT    NOT NULL,
493     tag         TEXT    NOT NULL,
494     rec_type    TEXT    NOT NULL,
495     start_pos   INT     NOT NULL,
496     length      INT     NOT NULL,
497     default_val TEXT    NOT NULL DEFAULT ' '
498 );
499
500 CREATE TABLE config.marc21_physical_characteristic_type_map (
501     ptype_key   TEXT    PRIMARY KEY,
502     label       TEXT    NOT NULL -- I18N
503 );
504
505 CREATE TABLE config.marc21_physical_characteristic_subfield_map (
506     id          SERIAL  PRIMARY KEY,
507     ptype_key   TEXT    NOT NULL REFERENCES config.marc21_physical_characteristic_type_map (ptype_key) ON DELETE CASCADE ON UPDATE CASCADE,
508     subfield    TEXT    NOT NULL,
509     start_pos   INT     NOT NULL,
510     length      INT     NOT NULL,
511     label       TEXT    NOT NULL -- I18N
512 );
513
514 CREATE TABLE config.marc21_physical_characteristic_value_map (
515     id              SERIAL  PRIMARY KEY,
516     value           TEXT    NOT NULL,
517     ptype_subfield  INT     NOT NULL REFERENCES config.marc21_physical_characteristic_subfield_map (id),
518     label           TEXT    NOT NULL -- I18N
519 );
520
521
522 CREATE TABLE config.z3950_source (
523     name                TEXT    PRIMARY KEY,
524     label               TEXT    NOT NULL UNIQUE,
525     host                TEXT    NOT NULL,
526     port                INT     NOT NULL,
527     db                  TEXT    NOT NULL,
528     record_format       TEXT    NOT NULL DEFAULT 'FI',
529     transmission_format TEXT    NOT NULL DEFAULT 'usmarc',
530     auth                BOOL    NOT NULL DEFAULT TRUE
531 );
532
533 COMMENT ON TABLE config.z3950_source IS $$
534 Z39.50 Sources
535
536 Each row in this table represents a database searchable via Z39.50.
537 $$;
538
539 COMMENT ON COLUMN config.z3950_source.record_format IS $$
540 Z39.50 element set.
541 $$;
542
543 COMMENT ON COLUMN config.z3950_source.transmission_format IS $$
544 Z39.50 preferred record syntax..
545 $$;
546
547
548 CREATE TABLE config.z3950_attr (
549     id          SERIAL  PRIMARY KEY,
550     source      TEXT    NOT NULL REFERENCES config.z3950_source (name) DEFERRABLE INITIALLY DEFERRED,
551     name        TEXT    NOT NULL,
552     label       TEXT    NOT NULL,
553     code        INT     NOT NULL,
554     format      INT     NOT NULL,
555     truncation  INT     NOT NULL DEFAULT 0,
556     CONSTRAINT z_code_format_once_per_source UNIQUE (code,format,source)
557 );
558
559 CREATE TABLE config.i18n_locale (
560     code        TEXT    PRIMARY KEY,
561     marc_code   TEXT    NOT NULL REFERENCES config.language_map (code) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
562     name        TEXT    UNIQUE NOT NULL,
563     description TEXT
564 );
565
566 CREATE TABLE config.i18n_core (
567     id              BIGSERIAL   PRIMARY KEY,
568     fq_field        TEXT        NOT NULL,
569     identity_value  TEXT        NOT NULL,
570     translation     TEXT        NOT NULL    REFERENCES config.i18n_locale (code) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
571     string          TEXT        NOT NULL
572 );
573
574 CREATE UNIQUE INDEX i18n_identity ON config.i18n_core (fq_field,identity_value,translation);
575
576 CREATE TABLE config.billing_type (
577     id              SERIAL  PRIMARY KEY,
578     name            TEXT    NOT NULL,
579     owner           INT     NOT NULL, -- REFERENCES actor.org_unit (id)
580     default_price   NUMERIC(6,2),
581     CONSTRAINT billing_type_once_per_lib UNIQUE (name, owner)
582 );
583
584 CREATE TABLE config.org_unit_setting_type (
585     name            TEXT    PRIMARY KEY,
586     label           TEXT    UNIQUE NOT NULL,
587     description     TEXT,
588     datatype        TEXT    NOT NULL DEFAULT 'string',
589     fm_class        TEXT,
590     view_perm       INT,
591     update_perm     INT,
592     --
593     -- define valid datatypes
594     --
595     CONSTRAINT coust_valid_datatype CHECK ( datatype IN
596     ( 'bool', 'integer', 'float', 'currency', 'interval',
597       'date', 'string', 'object', 'array', 'link' ) ),
598     --
599     -- fm_class is meaningful only for 'link' datatype
600     --
601     CONSTRAINT coust_no_empty_link CHECK
602     ( ( datatype =  'link' AND fm_class IS NOT NULL ) OR
603       ( datatype <> 'link' AND fm_class IS NULL ) )
604 );
605
606 CREATE TABLE config.usr_setting_type (
607
608     name TEXT PRIMARY KEY,
609     opac_visible BOOL NOT NULL DEFAULT FALSE,
610     label TEXT UNIQUE NOT NULL,
611     description TEXT,
612     datatype TEXT NOT NULL DEFAULT 'string',
613     fm_class TEXT,
614
615     --
616     -- define valid datatypes
617     --
618     CONSTRAINT coust_valid_datatype CHECK ( datatype IN
619     ( 'bool', 'integer', 'float', 'currency', 'interval',
620         'date', 'string', 'object', 'array', 'link' ) ),
621
622     --
623     -- fm_class is meaningful only for 'link' datatype
624     --
625     CONSTRAINT coust_no_empty_link CHECK
626     ( ( datatype = 'link' AND fm_class IS NOT NULL ) OR
627         ( datatype <> 'link' AND fm_class IS NULL ) )
628
629 );
630
631 -- Some handy functions, based on existing ones, to provide optional ingest normalization
632
633 CREATE OR REPLACE FUNCTION public.left_trunc( TEXT, INT ) RETURNS TEXT AS $func$
634         SELECT SUBSTRING($1,$2);
635 $func$ LANGUAGE SQL STRICT IMMUTABLE;
636
637 CREATE OR REPLACE FUNCTION public.right_trunc( TEXT, INT ) RETURNS TEXT AS $func$
638         SELECT SUBSTRING($1,1,$2);
639 $func$ LANGUAGE SQL STRICT IMMUTABLE;
640
641 CREATE OR REPLACE FUNCTION public.split_date_range( TEXT ) RETURNS TEXT AS $func$
642         SELECT REGEXP_REPLACE( $1, E'(\\d{4})-(\\d{4})', E'\\1 \\2', 'g' );
643 $func$ LANGUAGE SQL STRICT IMMUTABLE;
644
645 -- And ... a table in which to register them
646
647 CREATE TABLE config.index_normalizer (
648         id              SERIAL  PRIMARY KEY,
649         name            TEXT    UNIQUE NOT NULL,
650         description     TEXT,
651         func            TEXT    NOT NULL,
652         param_count     INT     NOT NULL DEFAULT 0
653 );
654
655 CREATE TABLE config.metabib_field_index_norm_map (
656         id      SERIAL  PRIMARY KEY,
657         field   INT     NOT NULL REFERENCES config.metabib_field (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
658         norm    INT     NOT NULL REFERENCES config.index_normalizer (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
659         params  TEXT,
660         pos     INT     NOT NULL DEFAULT 0
661 );
662
663 CREATE OR REPLACE FUNCTION oils_tsearch2 () RETURNS TRIGGER AS $$
664 DECLARE
665         normalizer      RECORD;
666         value           TEXT := '';
667 BEGIN
668         value := NEW.value;
669
670         IF TG_TABLE_NAME::TEXT ~ 'field_entry$' THEN
671                 FOR normalizer IN
672                         SELECT  n.func AS func,
673                                 n.param_count AS param_count,
674                                 m.params AS params
675                           FROM  config.index_normalizer n
676                                 JOIN config.metabib_field_index_norm_map m ON (m.norm = n.id)
677                           WHERE field = NEW.field
678                           ORDER BY m.pos
679                 LOOP
680                         EXECUTE 'SELECT ' || normalizer.func || '(' ||
681                                         quote_literal( value ) ||
682                                         CASE
683                                                 WHEN normalizer.param_count > 0 THEN ',' || BTRIM(normalizer.params,'[]')
684                                                 ELSE ''
685                                         END ||
686                                 ')' INTO value;
687
688                 END LOOP;
689         END IF;
690
691         IF REGEXP_REPLACE(VERSION(),E'^.+?(\\d+\\.\\d+).*?$',E'\\1')::FLOAT > 8.2 THEN
692                 NEW.index_vector = to_tsvector((TG_ARGV[0])::regconfig, value);
693         ELSE
694                 NEW.index_vector = to_tsvector(TG_ARGV[0], value);
695         END IF;
696
697         RETURN NEW;
698 END;
699 $$ LANGUAGE PLPGSQL;
700
701 COMMIT;