Mineplex/Mineplex.Database/041-rankbenefits.sql

17 lines
274 B
MySQL
Raw Normal View History

create or replace table rankbenefits
(
id int auto_increment,
accountId int null,
benefit varchar(100) null,
constraint id
unique (id)
)
charset=latin1;
create or replace index accountId
on rankbenefits (accountId);
alter table rankbenefits
add primary key (id);