Use this shortcut to drop a column:
use Abagayev\Laravel\MigrationShortcuts\Migrations\DropColumnMigration;
class DropNotNeededColumnMigration extends DropColumnMigration
{
protected $table = 'table_name';
protected $column = 'column_name';
protected $addColumnOnRollback = false;
}
If you want to use down
method for recreate a dropped column, you need to take a look at
Add a new column migration to see needed parameters