Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
36 lines (29 sloc)
868 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- | |
| -- Table structure for table `guild_emblems` | |
| -- | |
| CREATE TABLE IF NOT EXISTS `guild_emblems` ( | |
| `guild_id` int(11) unsigned NOT NULL, | |
| `world_name` varchar(32) NOT NULL, | |
| `file_type` varchar(255) NOT NULL, | |
| `file_data` blob, | |
| `version` int(11) unsigned NOT NULL default '0', | |
| PRIMARY KEY (`guild_id`, `world_name`) | |
| ) ENGINE=MyISAM; | |
| -- | |
| -- Table structure for table `user_configs` | |
| -- | |
| CREATE TABLE IF NOT EXISTS `user_configs` ( | |
| `account_id` int(11) unsigned NOT NULL, | |
| `world_name` varchar(32) NOT NULL, | |
| `data` longtext NOT NULL, | |
| PRIMARY KEY (`account_id`, `world_name`) | |
| ) ENGINE=MyISAM; | |
| -- | |
| -- Table structure for table `char_configs` | |
| -- | |
| CREATE TABLE IF NOT EXISTS `char_configs` ( | |
| `account_id` int(11) unsigned NOT NULL, | |
| `world_name` varchar(32) NOT NULL, | |
| `data` longtext NOT NULL, | |
| PRIMARY KEY (`account_id`, `world_name`) | |
| ) ENGINE=MyISAM; |