add global_events table

This commit is contained in:
RedSparr0w 2019-11-03 11:44:51 +13:00
parent d6482df67f
commit 4b21a1fec7

View file

@ -22,6 +22,16 @@ SET time_zone = "+00:00";
-- --------------------------------------------------------
--
-- Table structure for table `global_events`
--
CREATE TABLE `global_events` (
`eventName` varchar(128) NOT NULL,
`eventTime` varchar(128) NOT NULL,
`worldId` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Table structure for table `ammo_configs`
--
@ -23619,6 +23629,12 @@ INSERT INTO `staff_accounts` (`username`, `admin`, `serials`, `macs`) VALUES
-- Indexes for dumped tables
--
--
-- Indexes for table `global_events`
--
ALTER TABLE `global_events`
ADD UNIQUE KEY `world_event` (`eventName`,`worldId`);
--
-- Indexes for table `ammo_configs`
--