fix: adds reinvest column back to holdings table

This commit is contained in:
hackerESQ
2025-03-13 20:45:00 -05:00
parent f0ecc0fd3d
commit fe81ec7ee7
@@ -25,6 +25,7 @@ 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();
});