const Schema = require('@ostro/support/facades/schema'); const Migration = require('@ostro/database/migration') class {{ class }} extends Migration { async up() { await Schema.table('{{ table }}', function (table) { // }); } async down() { await Schema.table('{{ table }}', function (table) { // }); } } module.exports = {{ class }}