Update 2021_09_06_014744_create_holdings_table.php

This commit is contained in:
hackerESQ
2025-03-19 15:32:38 -05:00
committed by GitHub
parent c4b7d399ea
commit 9bcc80078e
@@ -25,7 +25,6 @@ class CreateHoldingsTable extends Migration
$table->float('total_cost_basis', 12, 4)->default(0);
$table->float('realized_gain_dollars', 12, 4)->default(0);
$table->float('dividends_earned', 12, 4)->default(0);
$table->boolean('reinvest_dividends')->default(false);
$table->timestamp('splits_synced_at')->nullable();
$table->timestamps();
});