diff --git a/README.md b/README.md index 313a718b..16060125 100644 --- a/README.md +++ b/README.md @@ -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 + diff --git a/esx_identity.sql b/esx_identity.sql index eec9e241..55dbfd88 100644 --- a/esx_identity.sql +++ b/esx_identity.sql @@ -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 +);