adds notifications table and models
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
CREATE TABLE notifications (
|
||||
id INTEGER PRIMARY KEY NOT NULL,
|
||||
player_id INTEGER NOT NULL,
|
||||
text VARCHAR NOT NULL,
|
||||
FOREIGN KEY (player_id) REFERENCES players(id)
|
||||
);
|
||||
Reference in New Issue
Block a user