fusenapi/ddl/fs_product_model3d_light.sql

10 lines
559 B
MySQL
Raw Normal View History

2023-06-06 07:01:13 +00:00
-- fusentest.fs_product_model3d_light definition
CREATE TABLE `fs_product_model3d_light` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL COMMENT '灯光名称',
`info` text NOT NULL COMMENT '灯光数据json格式',
`status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态值1显示0删除',
`ctime` int(11) DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=58 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='模型-灯光组表';