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

32 lines
2.6 KiB

ALTER table wms_storage MODIFY column header_no VARCHAR(128) comment '上游单据单号';
ALTER table wms_storage MODIFY column wh_id BIGINT(20) null comment '仓库 Id对应 wms_wh 表中的Id';
ALTER table wms_storage_mat MODIFY column wh_id BIGINT(20) null comment '仓库 Id对应 wms_wh 表中的Id';
ALTER table wms_storage_mat MODIFY column rg_id BIGINT(20) null comment '库区 Id对应 wms_rg 表中的Id';
ALTER table wms_storage_mat MODIFY column pn_id BIGINT(20) null comment '库区 Id对应 wms_rg 表中的Id';
ALTER table wms_storage_log MODIFY column wh_id BIGINT(20) null comment '仓库 Id对应 wms_wh 表中的Id';
ALTER table wms_storage_log MODIFY column rg_id BIGINT(20) null comment '库区 Id对应 wms_rg 表中的Id';
ALTER table wms_storage_log MODIFY column pn_id BIGINT(20) null comment '库区 Id对应 wms_rg 表中的Id';
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表示反之';
ALTER TABLE project_sale_order ADD COLUMN `project_name` VARCHAR (255) NOT NULL COMMENT '项目名称' after `contract_no`;
UPDATE project_sale_order set project_name = mould_name;
ALTER TABLE project_sale_order DROP COLUMN `mould_name`;
CREATE TABLE `base_equip` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '自增字段,唯一',
`name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '设备名称 唯一',
`mould_type_id` bigint(20) NOT NULL COMMENT '模具类型id对应 base_mould_type 表中的id',
`status` tinyint(1) DEFAULT '1' COMMENT '状态,1表示正常2表示禁用默认是1',
`creator` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者',
`create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`updater` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者',
`update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间',
`deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除',
`tenant_id` bigint(20) NOT NULL DEFAULT '0' COMMENT '租户编号',
PRIMARY KEY (`id`),
UNIQUE KEY `idx_name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='设备信息';