Various customizations from DungeonCrawl

This commit is contained in:
Tabasco
2013-05-05 18:20:22 -05:00
parent f983d19e01
commit 05d7c12d38
3 changed files with 10 additions and 0 deletions
@@ -0,0 +1,11 @@
--
-- Table structure for table `account_flags`
--
CREATE TABLE IF NOT EXISTS `account_flags` (
`p_accid` int(10) unsigned NOT NULL,
`p_flag` varchar(50) NOT NULL,
`p_value` varchar(80) NOT NULL,
PRIMARY KEY (`p_accid`,`p_flag`),
KEY `p_accid` (`p_accid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;