Added enabled flag to albums on database

This commit is contained in:
Pitu 2017-01-18 05:06:53 -03:00
parent de130602f9
commit 49a4e68a4a

View File

@ -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(() => {})