. */ use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class RenameUsernameAndIndexIsArchived extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('users', function(Blueprint $table) { $table->renameColumn('mlpforums_name', 'username'); $table->index('is_archived'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', function(Blueprint $table) { $table->renameColumn('username', 'mlpforums_name'); $table->dropIndex('users_is_archived_index'); }); } }