mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-30 01:38:52 +00:00
Merge pull request #11 from ArkSeyonet/master
Update Readme.md and esx_identity.sql
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
@@ -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
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user