Skip to content
Snippets Groups Projects
Commit 1b8c67da authored by Atanamo's avatar Atanamo
Browse files

Updated dependencies to uncritical versions

parent d97bc679
No related branches found
No related tags found
No related merge requests found
-- -----------------------------------------------------------------------------------
-- This example script sets up all database tables needed for the chat system itself,
-- but without tables for game world environment.
-- If you change table names, you have to modify the config.
-- If you change table structure or similar, you have to modify the database class.
-- -----------------------------------------------------------------------------------
-- MySQL server version: 5.6.12
-- -----------------------------------------------------------------------------------
--
-- Scheme for table `chat - channeljoins`
--
CREATE TABLE IF NOT EXISTS `chat - channeljoins` (
`ID` int(10) unsigned NOT NULL,
`UserID` int(10) unsigned NOT NULL,
`ChannelID` int(10) unsigned NOT NULL,
PRIMARY KEY (`UserID`,`ChannelID`),
UNIQUE KEY `ID` (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Current channel joins of clients/players';
-- --------------------------------------------------------
--
-- Scheme for table `chat - channellogs`
--
CREATE TABLE IF NOT EXISTS `chat - channellogs` (
`ChannelLogID` bigint(10) unsigned NOT NULL,
`ChannelBufferID` smallint(5) unsigned NOT NULL,
`ChannelTextID` varchar(50) NOT NULL,
`ChannelID` int(10) unsigned NOT NULL,
`EventTextID` varchar(25) NOT NULL,
`EventData` text NOT NULL,
`Timestamp` bigint(20) unsigned NOT NULL,
PRIMARY KEY (`ChannelTextID`,`ChannelBufferID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Current chat history of all channels';
-- --------------------------------------------------------
--
-- Scheme for table `chat - channels`
--
CREATE TABLE IF NOT EXISTS `chat - channels` (
`ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
`GalaxyID` tinyint(5) unsigned NOT NULL,
`CreatorUserID` int(10) unsigned NOT NULL,
`Title` tinytext NOT NULL,
`Password` tinytext NOT NULL,
`IrcChannel` tinytext,
`IsPublic` tinyint(1) unsigned NOT NULL,
PRIMARY KEY (`ID`),
KEY `GalaxyID` (`GalaxyID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Stored custom/non-default channels';
Loading
Loading
@@ -23,18 +23,18 @@
"npm": ">= 1.0.0"
},
"scripts": {
"preinstall": "npm install coffee-script@1.9.0 -g",
"preinstall": "npm install coffee-script@1.10.0 -g",
"install": "cake build"
},
"dependencies": {
"q": "~1.0.1",
"express": "~3.2.6",
"socket.io": "~1.1.0",
"irc": "~0.3.7",
"mysql": "~2.5.0"
"q": "~1.4.1",
"express": "~4.13.0",
"socket.io": "~1.3.7",
"irc": "~0.4.1",
"mysql": "~2.10.2"
},
"devDependencies": {
"coffee-script": "1.9.0"
"coffee-script": "1.10.0"
},
"bundleDependencies": [],
"private": true,
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment