浏览代码

Added enabled flag to albums on database

Pitu 8 年之前
父节点
当前提交
49a4e68a4a
共有 1 个文件被更改,包括 1 次插入0 次删除
  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(() => {})