[UPDATE] Adding monster looks to db (#220)

* [UPDATE] Adding monster looks to db

* small adjustments

add into schema.sql + change position in table

* add DEFAULT = ''

---------

Co-authored-by: slawkens <slawkens@gmail.com>
This commit is contained in:
Matheus Collier
2023-03-31 04:04:13 -03:00
committed by GitHub
parent 7569536d56
commit fd419076c2
5 changed files with 38 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
SET @myaac_database_version = 34;
SET @myaac_database_version = 35;
CREATE TABLE `myaac_account_actions`
(
@@ -203,6 +203,7 @@ CREATE TABLE `myaac_monsters` (
`mana` int(11) NOT NULL DEFAULT 0,
`exp` int(11) NOT NULL,
`health` int(11) NOT NULL,
`look` VARCHAR(255) NOT NULL DEFAULT '',
`speed_lvl` int(11) NOT NULL default 1,
`use_haste` tinyint(1) NOT NULL,
`voices` text NOT NULL,