mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-18 21:38:58 +00:00
31 lines
820 B
TypeScript
31 lines
820 B
TypeScript
import { BaseSchema } from '@adonisjs/lucid/schema'
|
|
|
|
export default class extends BaseSchema {
|
|
protected tableName = 'auth_access_tokens'
|
|
|
|
async up() {
|
|
this.schema.createTable(this.tableName, (table) => {
|
|
table.increments('id')
|
|
table
|
|
.integer('tokenable_id')
|
|
.notNullable()
|
|
.unsigned()
|
|
.references('id')
|
|
.inTable('users')
|
|
.onDelete('CASCADE')
|
|
|
|
table.string('type').notNullable()
|
|
table.string('name').nullable()
|
|
table.string('hash').notNullable()
|
|
table.text('abilities').notNullable()
|
|
table.timestamp('created_at')
|
|
table.timestamp('updated_at')
|
|
table.timestamp('last_used_at').nullable()
|
|
table.timestamp('expires_at').nullable()
|
|
})
|
|
}
|
|
|
|
async down() {
|
|
this.schema.dropTable(this.tableName)
|
|
}
|
|
} |