server/sql/updates/12447_01_characters_calendar_events.sql
2020-02-17 09:19:44 +00:00

15 lines
723 B
SQL

ALTER TABLE character_db_version CHANGE COLUMN required_12300_02_characters_mail required_12447_01_characters_calendar_events bit;
DROP TABLE IF EXISTS `calendar_events`;
CREATE TABLE `calendar_events` (
`eventId` bigint(10) unsigned NOT NULL DEFAULT '0',
`creatorGuid` int(10) unsigned NOT NULL DEFAULT '0',
`guildId` int(10) unsigned NOT NULL DEFAULT '0',
`type` tinyint(3) unsigned NOT NULL DEFAULT '4',
`flags` int(10) unsigned NOT NULL DEFAULT '0',
`dungeonId` int(10) NOT NULL DEFAULT '-1',
`eventTime` int(10) unsigned NOT NULL DEFAULT '0',
`title` varchar(128) NOT NULL DEFAULT '',
`description` varchar(1024) NOT NULL DEFAULT '',
PRIMARY KEY (`eventId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;