forked from 2009Scape/Server
update compiled server, fix instructions error
This commit is contained in:
parent
8f9bf6ad5c
commit
965e1b37ed
142 changed files with 502 additions and 1027 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