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:
ArkSeyonet
2017-09-20 20:43:57 -04:00
committed by nearbyplayer
parent 265ac804e1
commit b602ea4135
3 changed files with 391 additions and 2 deletions
+11
View File
@@ -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
);