This commit is contained in:
shoopea 2019-05-06 21:49:18 +08:00
parent d745613664
commit 01d5ce3f2b

4
sql.go
View File

@ -206,7 +206,7 @@ func insertMsgReport(objId int64, war_date int32, atk int32, def int32, exp int3
if objSubTypeId != objSubTypeMessageUnprocess {
return errors.New("Message is not of type Unknown")
}
/*
obj_id BIGINT UNSIGNED NOT NULL
,war_date TIMESTAMP NOT NULL
,attack SMALLINT UNSIGNED NOT NULL
@ -216,7 +216,7 @@ func insertMsgReport(objId int64, war_date int32, atk int32, def int32, exp int3
,exp SMALLINT UNSIGNED NOT NULL
,stamina TINYINT NOT NULL
,crit TINYINT NOT NULL
*/
stmt, err := db.Prepare(`INSERT INTO obj_msg_report (obj_id, war_date, attack, defense, gold, stock, exp, stamina, crit)
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?FROM_UNIXTIME(?), ?);`)
if err != nil {