Removal of characters_custom_data table.

This commit is contained in:
MobiusDevelopment 2020-06-13 19:02:52 +00:00
parent c4a532637f
commit a720942f94

View File

@ -1,13 +0,0 @@
-- ------------------------------------------
-- Table structure for Custom Characters Data
-- ------------------------------------------
DROP TABLE IF EXISTS `characters_custom_data`;
CREATE TABLE `characters_custom_data` (
`obj_Id` decimal(11,0) NOT NULL default '0',
`char_name` varchar(35) NOT NULL default '',
`hero` decimal(1,0) NOT NULL default '0',
`noble` decimal(1,0) NOT NULL default '0',
`donator` decimal(1,0) NOT NULL default '0',
`hero_end_date` BIGINT NOT NULL default '0',
PRIMARY KEY (`obj_Id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;