Merge pull request #11 from ArkSeyonet/master

Update Readme.md and esx_identity.sql
This commit is contained in:
Don
2017-10-11 08:22:46 -07:00
committed by GitHub
2 changed files with 12 additions and 4 deletions
+2 -4
View File
@@ -34,13 +34,11 @@ Commands:
/delchar 1,2,3
```
Notice:
`Drop the characters table, it is no longer used`
Credits:
`Script Created By: ArkSeyonet @Ark`
Licensing:
`This script uses GNU GPLv3`
This version is not compatible with ES5, you must use the new version if you are using es5 => https://github.com/ArkSeyonet/esx_identity_es5
+10
View File
@@ -7,3 +7,13 @@ ALTER TABLE `users`
ADD COLUMN `sex` VARCHAR(10) NULL DEFAULT '',
ADD COLUMN `height` VARCHAR(5) NULL DEFAULT ''
;
CREATE TABLE `characters` (
`identifier` varchar(255) NOT NULL,
`firstname` varchar(255) NOT NULL,
`lastname` varchar(255) NOT NULL,
`dateofbirth` varchar(255) NOT NULL,
`sex` varchar(1) NOT NULL DEFAULT 'f',
`height` varchar(128) NOT NULL
);