string('payment_method'); $table->dropColumn('payer'); $table->dropColumn('payer_id'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('payment', function (Blueprint $table) { $table->dropColumn('payment_method'); $table->string('payer_id')->nullable(); $table->string('payer_id')->nullable(); $table->text('payer')->nullable(); }); } }