Merge pull request #89 from Slypher/main

Fix non-existent whitelist table in sql file
This commit is contained in:
Mycroft
2022-02-16 12:59:38 +00:00
committed by GitHub
+16
View File
@@ -883,6 +883,16 @@ INSERT INTO `weashops` (`id`, `zone`, `item`, `price`) VALUES
(39, 'BlackWeashop', 'WEAPON_RAILGUN', 50000),
(40, 'BlackWeashop', 'WEAPON_STICKYBOMB', 500);
-- --------------------------------------------------------
--
-- Table structure for table `whitelist`
--
CREATE TABLE `whitelist` (
`identifier` varchar(60) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Indexes for dumped tables
--
@@ -1035,6 +1045,12 @@ ALTER TABLE `vehicle_sold`
ALTER TABLE `weashops`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `whitelist`
--
ALTER TABLE `whitelist`
ADD PRIMARY KEY (`identifier`);
--
-- AUTO_INCREMENT for table `addon_account_data`
--