alarm-monitoring/migrations/2 - AddLinks.sql
Christopher Cookman dcb668ddc3
Update
- Allow linking two account numbers together, as long as they're both owned by the person running the command
2024-08-18 01:17:41 -06:00

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
)