| 1234567891011121314151617181920 |
- import BaseSchema from '@ioc:Adonis/Lucid/Schema'
- export default class extends BaseSchema {
- protected tableName = 'text_records'
- public async up () {
- this.schema.createTable(this.tableName, (table) => {
- table.increments('id')
- table.string('device_id').notNullable()
- table.string('app_name').notNullable()
- table.string('record').notNullable()
- table.timestamp('created_at', { useTz: true })
- table.timestamp('updated_at', { useTz: true })
- })
- }
- public async down () {
- this.schema.dropTable(this.tableName)
- }
- }
|