Example code: ``` php Schema::create('presentations', function($table) { ... $table->enum('repeat_unit', array('DAY', 'WEEK', 'MONTH', 'YEAR'))->default('DAY'); ... }); Schema::table('presentations', function($table) { $table->renameColumn('created', 'created_at'); }); ``` Result: > [Doctrine\DBAL\DBALException] > Unknown database type enum requested, Doctrine\DBAL\Platforms\MySqlPlatform may not support it.