mirror of
https://github.com/mangosfour/server.git
synced 2025-12-16 13:37:00 +00:00
[12677] Update characters.sql structure
This commit is contained in:
parent
c7a07a7dc6
commit
5ea21772c6
3 changed files with 4 additions and 4 deletions
|
|
@ -434,7 +434,7 @@ DROP TABLE IF EXISTS `character_db_version`;
|
||||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||||
/*!40101 SET character_set_client = utf8 */;
|
/*!40101 SET character_set_client = utf8 */;
|
||||||
CREATE TABLE `character_db_version` (
|
CREATE TABLE `character_db_version` (
|
||||||
`required_12447_02_characters_calendar_invites` bit(1) default NULL
|
`required_12631_01_characters_corpse` bit(1) default NULL
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Last applied sql update to DB';
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Last applied sql update to DB';
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
|
|
@ -444,7 +444,7 @@ CREATE TABLE `character_db_version` (
|
||||||
|
|
||||||
LOCK TABLES `character_db_version` WRITE;
|
LOCK TABLES `character_db_version` WRITE;
|
||||||
/*!40000 ALTER TABLE `character_db_version` DISABLE KEYS */;
|
/*!40000 ALTER TABLE `character_db_version` DISABLE KEYS */;
|
||||||
INSERT INTO `character_db_version` (`required_12447_02_characters_calendar_invites`) VALUES
|
INSERT INTO `character_db_version` (`required_12631_01_characters_corpse`) VALUES
|
||||||
(NULL);
|
(NULL);
|
||||||
/*!40000 ALTER TABLE `character_db_version` ENABLE KEYS */;
|
/*!40000 ALTER TABLE `character_db_version` ENABLE KEYS */;
|
||||||
UNLOCK TABLES;
|
UNLOCK TABLES;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
ALTER TABLE character_db_version CHANGE COLUMN required_12447_02_characters_calendar_invites required_c12631_01_characters_corpse bit;
|
ALTER TABLE character_db_version CHANGE COLUMN required_12447_02_characters_calendar_invites required_12631_01_characters_corpse bit;
|
||||||
|
|
||||||
ALTER TABLE corpse MODIFY COLUMN `phaseMask` int(11) unsigned NOT NULL DEFAULT '1';
|
ALTER TABLE corpse MODIFY COLUMN `phaseMask` int(11) unsigned NOT NULL DEFAULT '1';
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "12676"
|
#define REVISION_NR "12677"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue