Mineplex/Mineplex.Database/001-accountfriend.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

15 lines
302 B
SQL

create or replace table accountfriend
(
id int not null,
uuidSource varchar(100) not null,
uuidTarget varchar(100) not null,
status varchar(100) null,
created timestamp null,
sourceId int null,
targetId int null,
favourite int null,
primary key (id, uuidSource, uuidTarget)
)
charset=latin1;