integer('order')->after('name')->default(0); $table->index('order'); }); } /** * Reverse the migrations. */ public function down() { Schema::table('component_groups', function (Blueprint $table) { $table->dropColumn('order'); }); } }