mod-needs-system/data/sql/db-characters/base/needs.sql

7 lines
235 B
MySQL
Raw Normal View History

2024-06-21 11:14:43 +00:00
CREATE TABLE `acore_characters`.`mod_needs` (
`guid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
`hunger` TINYINT(3) UNSIGNED NOT NULL DEFAULT '64',
`thirst` TINYINT(3) UNSIGNED NOT NULL DEFAULT '64',
PRIMARY KEY (`guid`) USING BTREE
)