Mineplex/Mineplex.Database/060-accountamplifierthank.sql
Daniel Waggner fc179e824b Database go brrrrrrr
No idea why, but the database deleted all of the information...  These files are also logged in the Discord Changelog channel and are uploaded to mediafire... Nevertheless, here they are anyhow (plus a bunch of empty tables that I'm too lazy to take out of this commit)
2021-05-28 22:22:21 -07:00

13 lines
354 B
SQL

create or replace table accountamplifierthank
(
accountId int not null,
amplifierId int not null,
time timestamp default current_timestamp() not null on update current_timestamp(),
constraint accountamplifierthank_ibfk_1
foreign key (accountId) references accounts (id)
);
create or replace index accountId
on accountamplifierthank (accountId);