mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2025-01-18 17:21:33 +00:00
Add missing column in table 'users'
This commit is contained in:
parent
939b5c52f7
commit
b9cad8e4d5
@ -28,6 +28,7 @@ let init = function(db){
|
||||
table.string('username')
|
||||
table.string('password')
|
||||
table.string('token')
|
||||
table.integer('enabled')
|
||||
table.integer('timestamp')
|
||||
}).then(() => {
|
||||
db.table('users').where({username: 'root'}).then((user) => {
|
||||
@ -47,4 +48,4 @@ let init = function(db){
|
||||
})
|
||||
}
|
||||
|
||||
module.exports = init
|
||||
module.exports = init
|
||||
|
Loading…
Reference in New Issue
Block a user