Commit aa4cfe00 by mercymodest

feat:- add sql

parent 2bd0d0e6
alter table t_device_group
-- 设备表 t_device 新增字段:
alter table t_device_group
add device_group_type tinyint default 0 null comment '设备组分类 0:相框 1:AI闹钟 default:0(相框)' after device_group_id;
-- 设备表 t_device 新增字段:
-- 设备序列号
-- 设备类型 0:相框 1:AI闹钟 default 0
......
ALTER TABLE
ALTER TABLE
......@@ -39,4 +39,8 @@ CREATE UNIQUE INDEX `idx_system_device_serial_number` ON `t_device_serial_number
alter table t_device_group
add activation_type tinyint default 0 null comment '激活方式 0:公钥激活 1:序列号激活 default:0(公钥激活)' after device_group_id;
\ No newline at end of file
add activation_type tinyint default 0 null comment '激活方式 0:公钥激活 1:序列号激活 default:0(公钥激活)' after device_group_id;
alter table t_device_group
add device_group_type tinyint default 0 null comment '设备组分类 0:相框 1:AI闹钟 default:0(相框)' after device_group_id;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment