mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-29 17:28:53 +00:00
Merge pull request #89 from Slypher/main
Fix non-existent whitelist table in sql file
This commit is contained in:
@@ -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`
|
||||
--
|
||||
|
||||
Reference in New Issue
Block a user