Mineplex/Mineplex.Database/011-accountstat.sql

13 lines
215 B
MySQL
Raw Normal View History

create or replace table accountstat
(
accountId int not null,
statId int not null,
value bigint null,
primary key (accountId, statId)
)
charset=latin1;
create or replace index statId
on accountstat (statId);