I am using Laravel 5.1 and I have a table called packages with this structure:
id int(11) weight decimal(10,2) weight_unit e
Use the DB::statement method:
DB::statement
DB::statement("ALTER TABLE packages MODIFY COLUMN weight_unit ENUM('Grams', 'Kgs', 'Pounds')");