dbpatch/202410/机具大融合/20241016_增加资产属性表.sql

11 lines
622 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

CREATE TABLE `bm_asset_attributes` (
`id` bigint(20) NOT NULL COMMENT '主键id',
`asset_name` varchar(50) DEFAULT NULL COMMENT '资产类型名称',
`asset_code` varchar(50) DEFAULT NULL COMMENT '资产编码',
`del_flag` char(1) DEFAULT NULL COMMENT '删除标志0代表存在 2代表删除',
`create_by` varchar(64) DEFAULT NULL COMMENT '创建者',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`update_by` varchar(64) DEFAULT NULL COMMENT '更新者',
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='资产属性表';