Revision 14136
Added by Aaron Marcuse-Kubitza over 10 years ago
trunk/schemas/util.sql | ||
---|---|---|
30 | 30 |
SET search_path = util, pg_catalog; |
31 | 31 |
|
32 | 32 |
-- |
33 |
-- Name: table_item; Type: TYPE; Schema: util; Owner: - |
|
34 |
-- |
|
35 |
|
|
36 |
CREATE TYPE table_item AS ( |
|
37 |
table_ regclass, |
|
38 |
name text |
|
39 |
); |
|
40 |
|
|
41 |
|
|
42 |
-- |
|
43 |
-- Name: check_constraint_def; Type: TYPE; Schema: util; Owner: - |
|
44 |
-- |
|
45 |
|
|
46 |
CREATE TYPE check_constraint_def AS ( |
|
47 |
constraint_ table_item, |
|
48 |
expr text |
|
49 |
); |
|
50 |
|
|
51 |
|
|
52 |
-- |
|
33 | 53 |
-- Name: col; Type: TYPE; Schema: util; Owner: - |
34 | 54 |
-- |
35 | 55 |
|
... | ... | |
131 | 151 |
|
132 | 152 |
|
133 | 153 |
-- |
134 |
-- Name: table_item; Type: TYPE; Schema: util; Owner: - |
|
135 |
-- |
|
136 |
|
|
137 |
CREATE TYPE table_item AS ( |
|
138 |
table_ regclass, |
|
139 |
name text |
|
140 |
); |
|
141 |
|
|
142 |
|
|
143 |
-- |
|
144 | 154 |
-- Name: _alt(anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement); Type: FUNCTION; Schema: util; Owner: - |
145 | 155 |
-- |
146 | 156 |
|
Also available in: Unified diff
schemas/util.sql: added check_constraint_def type