diff --git a/Server/server.sql b/Server/server.sql index 5bde75e99..4d14184e0 100644 --- a/Server/server.sql +++ b/Server/server.sql @@ -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` --