You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
648 B
SQL
27 lines
648 B
SQL
create table auth_license
|
|
(
|
|
id varchar(36) not null,
|
|
appid varchar(36) not null,
|
|
name varchar(100),
|
|
api_key varchar(64),
|
|
secret_key varchar(2000),
|
|
create_date datetime,
|
|
constraint pk_auth_license primary key (id)
|
|
);
|
|
|
|
|
|
alter table io_order add (
|
|
ullageSupNo VARCHAR(128) NULL DEFAULT NULL COMMENT '缺量补单单号',
|
|
createUser int NULL DEFAULT NULL COMMENT '创建用户ID',
|
|
reviewUser int NULL DEFAULT NULL COMMENT '审核用户ID'
|
|
);
|
|
|
|
|
|
alter table stock_order add (
|
|
createUser int NULL DEFAULT NULL COMMENT '创建用户ID',
|
|
reviewUser int NULL DEFAULT NULL COMMENT '审核用户ID'
|
|
);
|
|
|
|
|
|
|