Loading...
Searching...
No Matches
mpe_users.ddl
Go to the documentation of this file.
1/**
2 @file mpe_users.ddl
3 @brief ddl file
4 @details used to capture the actual users of the app
5
6 @version 9.2
7 @author 4GL Apps Ltd
8 @copyright 4GL Apps Ltd
9**/
10
11proc sql;
12create table &curlib..mpe_users(
13 user_id char(50) not null,
14 last_seen_dt num not null format=date9.,
15 registered_dt num not null format=date9.,
16 constraint pk_mpe_users
17 primary key(user_id));