/* ================================================================================ 档案代号:bnl_file 档案名称:委外加工记录卡档 档案目的: 上游档案: 下游档案: ============.========================.========================================== */ create table bnl_file ( bnl01 varchar2(8) NOT NULL /*委外加工记录卡编号 */ ); create unique index bnl_pk on bnl_file (bnl01); alter table bnl_file add constraint bnl_pk primary key (bnl01) enable validate; grant select on bnl_file to public; grant index on bnl_file to public; grant update on bnl_file to public; grant delete on bnl_file to public; grant insert on bnl_file to public; |