Commit | Line | Data |
---|---|---|
8d7e2786 BA |
1 | var db = require("../utils/database"); |
2 | ||
3 | /* | |
4 | * Structure: | |
c018b304 | 5 | * id: integer |
8d7e2786 BA |
6 | * name: varchar |
7 | * description: varchar | |
8 | */ | |
9 | ||
ab4f4bf2 | 10 | const VariantModel = |
8d7e2786 | 11 | { |
ab4f4bf2 BA |
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 | |
8d7e2786 BA |
23 | } |
24 | ||
ab4f4bf2 | 25 | module.exports = VariantModel; |