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