d99110714f3d55b3bec503e57cf1f48602c96003
[vchess.git] / server / models / Variant.js
1 const db = require("../utils/database");
2
3 /*
4 * Structure:
5 * id: integer
6 * name: varchar
7 * description: varchar
8 */
9
10 const VariantModel =
11 {
12 getAll: function(callback)
13 {
14 db.serialize(function() {
15 const query =
16 "SELECT * " +
17 "FROM Variants";
18 db.all(query, callback);
19 });
20 },
21
22 //create, update, delete: directly in DB
23 }
24
25 module.exports = VariantModel;