|
@@ -1490,3 +1490,48 @@ comment on table GK_OPERATION_JSJY_LHYXFJ
|
|
|
is '理货延续附件';
|
|
|
|
|
|
|
|
|
+ -- Create table
|
|
|
+create table GK_BASIC_JSJY_GKJS_XMBWGLB
|
|
|
+(
|
|
|
+ id VARCHAR2(40) not null,
|
|
|
+ xmid VARCHAR2(40),
|
|
|
+ bwid VARCHAR2(40),
|
|
|
+ create_user VARCHAR2(40),
|
|
|
+ update_user VARCHAR2(40),
|
|
|
+ create_date_time TIMESTAMP(6),
|
|
|
+ update_date_time TIMESTAMP(6),
|
|
|
+ szd VARCHAR2(40),
|
|
|
+ sftb CHAR(1) default 'Y',
|
|
|
+ tbzt CHAR(2) default 'N',
|
|
|
+ record_status NUMBER
|
|
|
+)
|
|
|
+tablespace GK_OPERATION
|
|
|
+ pctfree 10
|
|
|
+ initrans 1
|
|
|
+ maxtrans 255
|
|
|
+ storage
|
|
|
+ (
|
|
|
+ initial 64
|
|
|
+ next 8
|
|
|
+ minextents 1
|
|
|
+ maxextents unlimited
|
|
|
+ );
|
|
|
+-- Add comments to the table
|
|
|
+comment on table GK_BASIC_JSJY_GKJS_XMBWGLB
|
|
|
+ is '项目泊位信息';
|
|
|
+-- Create/Recreate primary, unique and foreign key constraints
|
|
|
+alter table GK_BASIC_JSJY_GKJS_XMBWGLB
|
|
|
+ add constraint GK_BASIC_JSJY_GKJS_XMBWGLB_PK primary key (ID)
|
|
|
+ using index
|
|
|
+ tablespace USERS
|
|
|
+ pctfree 10
|
|
|
+ initrans 2
|
|
|
+ maxtrans 255
|
|
|
+ storage
|
|
|
+ (
|
|
|
+ initial 64K
|
|
|
+ next 1M
|
|
|
+ minextents 1
|
|
|
+ maxextents unlimited
|
|
|
+ );
|
|
|
+
|