string('readable_name')->after('name'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('permissions', function (Blueprint $table) { $table->removeColumn('readable_name'); }); } };