1
Fork 0
mirror of https://bitbucket.org/Ioncannon/project-meteor-server.git synced 2025-04-21 20:27:47 +00:00

Reverting changes to characters_statuseffect sql file

This commit is contained in:
yogurt 2018-05-28 02:10:14 -05:00
parent d23a84d6cf
commit 0739532c7d

View file

@ -24,9 +24,9 @@ DROP TABLE IF EXISTS `characters_statuseffect`;
/*!40101 SET character_set_client = utf8 */; /*!40101 SET character_set_client = utf8 */;
CREATE TABLE `characters_statuseffect` ( CREATE TABLE `characters_statuseffect` (
`characterId` int(10) unsigned NOT NULL, `characterId` int(10) unsigned NOT NULL,
`statusId` smallint(5) unsigned NOT NULL, `statusId` mediumint(8) unsigned NOT NULL,
`magnitude` bigint(20) unsigned NOT NULL, `magnitude` bigint(20) unsigned NOT NULL,
`endTime` int(10) unsigned NOT NULL, `duration` int(10) unsigned NOT NULL,
`tick` int(10) unsigned NOT NULL, `tick` int(10) unsigned NOT NULL,
`tier` tinyint(3) unsigned NOT NULL, `tier` tinyint(3) unsigned NOT NULL,
`extra` bigint(20) unsigned NOT NULL, `extra` bigint(20) unsigned NOT NULL,
@ -52,4 +52,4 @@ UNLOCK TABLES;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2018-05-27 16:12:00 -- Dump completed on 2018-05-27 17:59:07