string('open_actual_bal')->nullable(); $table->string('open_cleared_bal')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('accounts', function (Blueprint $table){ $table->dropColumn(['open_cleared_bal','open_actual_bal']); }); } };