Explorar o código

Added enabled flag to albums on database

Pitu %!s(int64=8) %!d(string=hai) anos
pai
achega
49a4e68a4a
Modificáronse 1 ficheiros con 1 adicións e 0 borrados
  1. 1 0
      database/db.js

+ 1 - 0
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(() => {})