adonis-fullstack-app/database/migrations/1503248427886_token.js

23 lines
498 B
JavaScript
Raw Normal View History

2017-08-20 17:09:25 +00:00
'use strict'
const Schema = use('Schema')
class TokensSchema extends Schema {
up () {
this.create('tokens', table => {
table.increments()
table.integer('user_id').unsigned().references('id').inTable('users')
table.string('token', 255).notNullable().unique().index()
2017-10-29 18:24:28 +00:00
table.string('type', 80).notNullable()
2017-08-20 17:09:25 +00:00
table.boolean('is_revoked').defaultTo(false)
table.timestamps()
})
}
down () {
this.drop('tokens')
}
}
module.exports = TokensSchema