给MySQL数据表加入uuid
alter table table_name add column uuid VARCHAR(255) default "0"
update table_name set uuid = UUID();
kingrain送给读者的话:Everthing isn't getting along well,your efforts paid off!
alter table table_name add column uuid VARCHAR(255) default "0"
update table_name set uuid = UUID();