You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mes-heli/sql/v1.3.0/1.structure.sql

8 lines
479 B

ALTER table wms_storage MODIFY column header_no VARCHAR(128);
ALTER table wms_storage_mat MODIFY column wh_id BIGINT(20) null;
ALTER table wms_storage_mat MODIFY column rg_id BIGINT(20) null;
ALTER table wms_storage_mat MODIFY column pn_id BIGINT(20) null;
UPDATE base_material set virtual_part = 'N';
ALTER TABLE base_material MODIFY COLUMN virtual_part CHAR ( 1 ) NOT NULL DEFAULT 'N' COMMENT '虚拟物料标识只能填写Y和NY表示虚拟物料N表示反之';