Still trying to track down why Entities are returning correctly...

This commit is contained in:
Alex Stevenson 2025-07-31 15:53:38 -04:00
parent 380153ec39
commit 0083f2887e
3 changed files with 26 additions and 13 deletions

View file

@ -10,7 +10,7 @@ CREATE TABLE IF NOT EXISTS users (
CREATE TABLE IF NOT EXISTS entities (
id INTEGER PRIMARY KEY,
user_id INTEGER,
user_id INTEGER NOT NULL,
name VARCHAR(64),
spawn_line VARCHAR(64),
FOREIGN KEY(user_id) REFERENCES users(id)