diff options
author | Julien Dessaux | 2022-11-21 21:39:17 +0100 |
---|---|---|
committer | Julien Dessaux | 2022-11-21 21:39:17 +0100 |
commit | 8ac636186cf5f704264e7473864c54b3edaf4049 (patch) | |
tree | 6f575d5b4dc5afc0c087e0467c4dd7d6e4a6dd6b /database/db.js | |
parent | cleaned up the distinction between routes and controllers (diff) | |
download | jeux-de-mots-8ac636186cf5f704264e7473864c54b3edaf4049.tar.gz jeux-de-mots-8ac636186cf5f704264e7473864c54b3edaf4049.tar.bz2 jeux-de-mots-8ac636186cf5f704264e7473864c54b3edaf4049.zip |
Added basic games handling
Diffstat (limited to '')
-rw-r--r-- | database/db.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/database/db.js b/database/db.js index 259ab58..a360e9b 100644 --- a/database/db.js +++ b/database/db.js @@ -3,6 +3,7 @@ import Database from "better-sqlite3"; const allMigrations = [ "database/000_init.sql", + "database/001_games.sql", ]; const db = new Database("jdm.db"); |