(database): Commented out foreign key constraints in init.sql

This commit is contained in:
apetitco 2025-12-22 19:51:23 +01:00 committed by Maix0
parent fb6566fac9
commit f79dc43b39

View file

@ -29,6 +29,6 @@ CREATE TABLE IF NOT EXISTS tictactoe (
player2 TEXT NOT NULL,
outcome TEXT NOT NULL,
FOREIGN KEY(player1) REFERENCES user(id)
FOREIGN KEY(player2) REFERENCES user(id)
-- FOREIGN KEY(player1) REFERENCES user(id)
-- FOREIGN KEY(player2) REFERENCES user(id)
);