id(); $table->decimal('balance'); $table->foreignId('ledger_id')->nullable()->constrained()->onDelete('cascade'); $table->foreignId('account_id')->nullable()->constrained()->onDelete('cascade'); $table->boolean('is_starting')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('balances'); } };