Version Bump for 1.6.5

This commit is contained in:
Mycroft
2022-03-23 16:22:46 +00:00
parent cacf7804f3
commit 8e82543933
51 changed files with 84 additions and 83 deletions
+14
View File
@@ -112,6 +112,19 @@ CREATE TABLE `cardealer_vehicles` (
-- --------------------------------------------------------
--
-- Table structure for table `multicharacter_slots`
--
CREATE TABLE `multicharacter_slots` (
`identifier` VARCHAR(60) NOT NULL,
`slots` INT(11) NOT NULL,
PRIMARY KEY (`identifier`) USING BTREE,
INDEX `slots` (`slots`) USING BTREE
) ENGINE=InnoDB;
-- --------------------------------------------------------
--
-- Table structure for table `datastore`
--
@@ -501,6 +514,7 @@ CREATE TABLE `users` (
`status` longtext DEFAULT NULL,
`is_dead` tinyint(1) DEFAULT 0,
`id` int(11) NOT NULL,
`disabled` TINYINT(1) NULL DEFAULT '0',
`last_property` varchar(255) DEFAULT NULL
) ENGINE=InnoDB;