string('type')->default('version'); $table->index('type'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('page_revisions', function (Blueprint $table) { $table->dropColumn('type'); }); } };