Loading...
Searching...
No Matches
mpe_signoffs.ddl
Go to the documentation of this file.
1/**
2 @file
3 @brief ddl file
4 @details
5
6
7 @version 9.2
8 @author 4GL Apps Ltd
9 @copyright 4GL Apps Ltd
10**/
11
12proc sql;
13create table &curlib..mpe_signoffs(
14 tech_from_dttm num not null,
15 signoff_table varchar(50) not null,
16 signoff_section_rk num not null,
17 signoff_version_rk num not null,
18 signoff_name varchar(100) not null,
19 tech_to_dttm num not null,
20 constraint pk_mpe_signoffs
21 primary key(tech_from_dttm, signoff_table, signoff_section_rk));
22