@adonisjs/auth
Version:
Official authentication provider for Adonis framework
26 lines (21 loc) • 831 B
Plain Text
import BaseSchema from '@ioc:Adonis/Lucid/Schema'
export default class {{ tokensSchemaName }} extends BaseSchema {
protected tableName = '{{ tokensTableName }}'
public async up() {
this.schema.createTable(this.tableName, (table) => {
table.increments('id').primary()
table.integer('user_id').unsigned().references('id').inTable('{{ usersTableName }}').onDelete('CASCADE')
table.string('name').notNullable()
table.string('type').notNullable()
table.string('token', 64).notNullable().unique()
/**
* Uses timestampz for PostgreSQL and DATETIME2 for MSSQL
*/
table.timestamp('expires_at', { useTz: true }).nullable()
table.timestamp('created_at', { useTz: true }).notNullable()
})
}
public async down() {
this.schema.dropTable(this.tableName)
}
}