Ver código fonte

Added enabled flag to albums on database

Pitu 8 anos atrás
pai
commit
49a4e68a4a
1 arquivos alterados com 1 adições e 0 exclusões
  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(() => {})