/* ================================================================================ 档案代号:bmg_file 档案名称:工程变异单说明档 档案目的: 上游档案: 下游档案: ============.========================.========================================== */ create table bmg_file ( bmg01 varchar2(16) NOT NULL, /*工程变异单单号 */ /*储存工程变异单单号。 */ bmg02 number(5) NOT NULL, /*行序号 */ /*储存工程变异说明行序,可作为显示时的出 */ /*现顺序。 */ bmg03 varchar2(255) /*行说明 */ /*储存工程变异说明。 */ ); create unique index bmg_pk on bmg_file (bmg01,bmg02); alter table bmg_file add constraint bmg_pk primary key (bmg01,bmg02) enable validate; grant select on bmg_file to public; grant index on bmg_file to public; grant update on bmg_file to public; grant delete on bmg_file to public; grant insert on bmg_file to public; |