mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 16:37:01 +00:00
7 lines
280 B
SQL
7 lines
280 B
SQL
CREATE TABLE `account_data` (
|
|
`account` 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,
|
|
PRIMARY KEY (`account`,`type`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|