forked from utPLSQL/utPLSQL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathut_receq.tab
30 lines (24 loc) · 841 Bytes
/
ut_receq.tab
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
-- register tables and view that will have record comparison functions created
-- 12/26/01 dws
CREATE TABLE ut_receq (
id INTEGER,
name VARCHAR2(30),
test_name VARCHAR2(30),
created_by VARCHAR2(30),
rec_owner VARCHAR2(30),
CONSTRAINT ut_receq_pk PRIMARY KEY (id)
);
CREATE UNIQUE INDEX ut_receq_idx1 ON
ut_receq(rec_owner , name);
-- Intersection table between ut_package and ut_receq
CREATE TABLE ut_receq_pkg (
receq_id integer,
pkg_id INTEGER,
created_by VARCHAR2(30)
);
ALTER TABLE ut_receq_pkg ADD CONSTRAINT ut_receq_pkg
primary key(receq_id,pkg_id,created_by);
ALTER TABLE ut_receq_pkg ADD CONSTRAINT ut_receq_pkg_receq_FK
FOREIGN KEY(receq_id) REFERENCES ut_receq(id);
ALTER TABLE ut_receq_pkg ADD CONSTRAINT ut_receq_pkg_pkg_FK
FOREIGN KEY(pkg_id) REFERENCES ut_package(id);