- Allow linking two account numbers together, as long as they're both owned by the person running the command
6 lines
165 B
SQL
6 lines
165 B
SQL
CREATE TABLE IF NOT EXISTS 'links' (
|
|
'id' INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
'linked_from' TEXT NOT NULL,
|
|
'linked_to' TEXT NOT NULL,
|
|
'discord_id' TEXT NOT NULL
|
|
) |