rt-sim-training-service/sql/20201123.sql

18 lines
402 B
MySQL
Raw Normal View History

alter table map_data
add version varchar(8) default 0.1 not null comment '版本号';
drop table map_version;
alter table map_data
add time timestamp default now() not null comment '发布时间';
alter table map_data
add user_id bigint null comment '发布者的id';
alter table map_info
add version varchar(8) default 0.1 not null comment '该地图正在使用的地图数据的版本';