import { BaseSchema } from '@adonisjs/lucid/schema' export default class extends BaseSchema { protected tableName = 'services' async up() { this.schema.alterTable(this.tableName, (table) => { table.string('friendly_name').nullable() table.string('description').nullable() }) } async down() { this.schema.alterTable(this.tableName, (table) => { table.dropColumn('friendly_name') table.dropColumn('description') }) } }