18 lines
402 B
MySQL
18 lines
402 B
MySQL
|
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 '该地图正在使用的地图数据的版本';
|
||
|
|
||
|
|
||
|
|
||
|
|