mirror of
https://github.com/DarkflameUniverse/DarkflameServer
synced 2024-08-30 18:43:58 +00:00
7 lines
237 B
MySQL
7 lines
237 B
MySQL
|
CREATE TABLE IF NOT EXISTS ignore_list (
|
||
|
player_id BIGINT NOT NULL REFERENCES charinfo(id) ON DELETE CASCADE,
|
||
|
ignored_player_id BIGINT NOT NULL REFERENCES charinfo(id) ON DELETE CASCADE,
|
||
|
|
||
|
PRIMARY KEY (player_id, ignored_player_id)
|
||
|
);
|