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

24 lines
552 B
JavaScript
Raw Permalink Normal View History

2017-08-20 17:09:25 +00:00
'use strict'
2018-09-15 07:37:07 +00:00
/** @type {import('@adonisjs/lucid/src/Schema')} */
2017-08-20 17:09:25 +00:00
const Schema = use('Schema')
class TokensSchema extends Schema {
up () {
this.create('tokens', (table) => {
2017-08-20 17:09:25 +00:00
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