diff options
Diffstat (limited to 'database/db.js')
| -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 b22ce51..dde0259 100644 --- a/database/db.js +++ b/database/db.js @@ -5,6 +5,7 @@ let init = function(db, config){ db.schema.createTableIfNotExists('albums', function (table) { table.increments() table.string('name') + table.integer('enabled') table.integer('timestamp') }).then(() => {}) |