fix non-existent whitelist table in sql file

This commit is contained in:
Lucas Lima
2022-02-15 21:38:09 -03:00
parent 707db9353e
commit e63bb43305
+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`
--