Loading...
Searching...
No Matches
mpe_groups.ddl
Go to the documentation of this file.
1/**
2 @file
3 @brief DDL for MPE_GROUPS (pk: tx_from,group_name,user_name)
4
5 @version 9.3
6 @author 4GL Apps Ltd
7 @copyright 4GL Apps Ltd
8**/
9
10create table &curlib..mpe_groups(
11 tx_from num not null,
12 group_name char(100) not null,
13 group_desc char(256),
14 user_name char(50) not null,
15 tx_to num not null,
16 constraint pk_mpe_groups
17 primary key(tx_from,group_name,user_name));