Abandoned Commit

This commit is contained in:
Eclypsed
2024-02-25 21:29:20 -05:00
parent c7b9b214b7
commit 5fc1883e7c
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@@ -13,7 +13,7 @@ const initConnectionsTable = `CREATE TABLE IF NOT EXISTS Connections(
userId VARCHAR(36) NOT NULL,
type VARCHAR(36) NOT NULL,
service TEXT,
tokens TEXT
tokens TEXT,
FOREIGN KEY(userId) REFERENCES Users(id)
)`
db.exec(initUsersTable), db.exec(initConnectionsTable)