Changed worldstates.comment field to allow NULL values (by Spp).

Proper naming for recent sql files. Who was the fool to give me push access!?

--HG--
branch : trunk
This commit is contained in:
teacher
2010-04-15 21:44:21 +02:00
parent c5f0e94966
commit 9b90c343e4
3 changed files with 2 additions and 1 deletions

View File

@@ -1936,7 +1936,7 @@ DROP TABLE IF EXISTS `worldstates`;
CREATE TABLE `worldstates` (
`entry` mediumint(11) UNSIGNED NOT NULL DEFAULT '0',
`value` bigint(40) UNSIGNED NOT NULL DEFAULT '0',
`comment` text NOT NULL,
`comment` text,
PRIMARY KEY (`entry`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Variable Saves';
/*!40101 SET character_set_client = @saved_cs_client */;