Added missing SQL information

This commit is contained in:
ElPumpo
2018-06-23 11:51:09 +02:00
parent e34490d58a
commit eac73092e0
2 changed files with 6 additions and 6 deletions
+3 -6
View File
@@ -1,10 +1,5 @@
# esx_joblisting
Simple job listing script, you can specify what jobs you want to be whitelisted.
### Update
If you have an outdated version of ES Extended, you might need to run the following on your SQL server:
`ALTER TABLE jobs add whitelisted BOOLEAN NOT NULL DEFAULT FALSE;`
Simple job listing script, you can specify what jobs you want to be whitelisted in db.
## Download & Installation
@@ -23,6 +18,8 @@ git clone https://github.com/ESX-Org/esx_joblisting [esx]/esx_joblisting
- Download https://github.com/ESX-Org/esx_joblisting/archive/master.zip
- Put it in the `[esx]` directory
## Installation
- Import `esx_joblisting.sql` in your database
- Add this in your `server.cfg`:
```
+3
View File
@@ -0,0 +1,3 @@
USE `essentialmode`;
ALTER TABLE jobs add whitelisted BOOLEAN NOT NULL DEFAULT FALSE;