1
This commit is contained in:
parent
6ab1617615
commit
67a13aefe4
12
sql/relationdb_n_migrate_201210_01.sql
Normal file
12
sql/relationdb_n_migrate_201210_01.sql
Normal file
@ -0,0 +1,12 @@
|
||||
start transaction;
|
||||
|
||||
LOCK TABLES `guild` WRITE;
|
||||
alter table `guild` add column `owner_sex` int(11) NOT NULL DEFAULT '0' COMMENT 'owner 性别';
|
||||
alter table `guild` add column `creator_sex` int(11) NOT NULL DEFAULT '0' COMMENT 'creator 性别';
|
||||
UNLOCK TABLES;
|
||||
|
||||
LOCK TABLES `version` WRITE;
|
||||
insert into `version` (version) values(2020121001);
|
||||
UNLOCK TABLES;
|
||||
|
||||
commit;
|
Loading…
x
Reference in New Issue
Block a user