mirror of
https://github.com/mangosfour/server.git
synced 2025-12-29 07:37:05 +00:00
Fixed windows build, account data should be saved server side now
This commit is contained in:
parent
f7657a0fe3
commit
97bf2e7d68
11 changed files with 138 additions and 30 deletions
7
sql/wotlk_updates/5_character_account_data.sql
Normal file
7
sql/wotlk_updates/5_character_account_data.sql
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
CREATE TABLE `account_data` (
|
||||
`guid` int(11) unsigned NOT NULL default '0',
|
||||
`type` int(11) unsigned NOT NULL default '0',
|
||||
`time` bigint(11) unsigned NOT NULL default '0',
|
||||
`data` longtext NOT NULL default '',
|
||||
PRIMARY KEY (`guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
Loading…
Add table
Add a link
Reference in a new issue