mpe_review.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 
12 proc sql;
13 create table &curlib..mpe_review(
14  table_id varchar(32) not null,
15  base_table varchar(41) not null,
16  review_status_id varchar(10) not null,
17  reviewed_by_nm varchar(100) not null,
18  reviewed_on_dttm date not null,
19  review_reason_txt varchar(400),
20  constraint pk_mpe_review
21  primary key(table_id, reviewed_by_nm));
22