file 表
-- Create table
create table T_OWS_FILE
(
id VARCHAR2(64) not null,
name VARCHAR2(255),
ext_name VARCHAR2(10),
save_path VARCHAR2(100),
instance_id VARCHAR2(64),
field_name VARCHAR2(64),
file_size NUMBER(13),
ext_data VARCHAR2(1024),
create_time DATE default sysdate
)
tablespace OWS
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
-- Create/Recreate primary, unique and foreign key constraints
alter table T_OWS_FILE
add primary key (ID)
using index
tablespace OWS
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);