mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-09-01 13:01:41 +00:00
29f64dd928
- 4 tab indents
- Commands reworked
- now supports source 0 (console)
- toLower, and duplicate checks in db
- Fixed error messages
- added seperate error message when `WhiteList` table is empty
- fixed steam id check
8 lines
117 B
SQL
8 lines
117 B
SQL
USE `essentialmode`;
|
|
|
|
CREATE TABLE `whitelist` (
|
|
`identifier` varchar(60) NOT NULL,
|
|
|
|
PRIMARY KEY (`identifier`)
|
|
);
|