boolean('stickied')->after('visible')->default(false); $table->index('stickied'); }); } /** * Reverse the migrations. */ public function down() { Schema::table('incidents', function (Blueprint $table) { $table->dropColumn('stickied'); }); } }