Mineplex/Mineplex.Database/014-accounttasks.sql

16 lines
266 B
MySQL
Raw Permalink Normal View History

create or replace table accounttasks
(
id int auto_increment
primary key,
accountId int not null,
taskId int not null
)
charset=latin1;
create or replace index accountId
on accounttasks (accountId);
create or replace index taskId
on accounttasks (taskId);