Pārlūkot izejas kodu

Added enabled flag to albums on database

Pitu 8 gadi atpakaļ
vecāks
revīzija
49a4e68a4a
1 mainītis faili ar 1 papildinājumiem un 0 dzēšanām
  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(() => {})