boolean('draft')->default(false); $table->index('draft'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('pages', function (Blueprint $table) { $table->dropColumn('draft'); }); } };