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