mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-09-04 08:13:21 +00:00
update(feat): Multiple Characters (Command Based) (#4)
* Update server.lua * Add files via upload * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update server.lua * Update server.lua
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
USE `essentialmode`;
|
||||
|
||||
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