/*
================================================================================
档案代号:gbe_file
档案名称:程式版号资料档
档案目的:
上游档案:
下游档案:
============.========================.==========================================
*/
create table gbe_file
(
gbe01       varchar2(10) NOT NULL,   /*工作单号                               */
gbe02       varchar2(5),             /*模组                                   */
gbe03       varchar2(40) NOT NULL,   /*程式代号                               */
gbe04       varchar2(10)             /*版号                                   */
);

create unique index gbe_pk on gbe_file (gbe01,gbe03);
alter table gbe_file add  constraint gbe_pk primary key  (gbe01,gbe03) enable validate;
grant select on gbe_file to public;
grant index on gbe_file to public;
grant update on gbe_file to public;
grant delete on gbe_file to public;
grant insert on gbe_file to public;