I\'m writing a migration to make certain columns in a table nullable right now. For the down function, I of course want to make those columns not nullable
Prior to Laravel 5 there was no Laravel native way of altering an existing table column using the schema builder. You'd need to use raw queries for this.