forked from 2009Scape/Server
add global_events table
This commit is contained in:
parent
d6482df67f
commit
4b21a1fec7
1 changed files with 16 additions and 0 deletions
|
|
@ -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`
|
||||
--
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue