| 1234567891011121314151617181920212223242526 |
- import BaseSchema from '@ioc:Adonis/Lucid/Schema'
- export default class extends BaseSchema {
- protected tableName = 'api_tokens'
- public async up() {
- this.schema.createTable(this.tableName, (table) => {
- table.increments('id').primary()
- table
- .integer('user_id')
- .unsigned()
- .references('id')
- .inTable('users')
- .onDelete('CASCADE')
- table.string('name').notNullable()
- table.string('type').notNullable()
- table.string('token', 64).notNullable().unique()
- table.timestamp('expires_at', { useTz: true }).nullable()
- table.timestamp('created_at', { useTz: true }).notNullable()
- })
- }
- public async down() {
- this.schema.dropTable(this.tableName)
- }
- }
|