Parcourir la source

Added enabled flag to albums on database

Pitu il y a 8 ans
Parent
commit
49a4e68a4a
1 fichiers modifiés avec 1 ajouts et 0 suppressions
  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(() => {})