<?php use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Schema\Builder; return [ 'up' => function (Builder $schema) { $schema->table('{{table}}', function (Blueprint $table) { // }); }, 'down' => function (Builder $schema) { $schema->table('{{table}}', function (Blueprint $table) { // }); } ];