This commit is contained in:
hackerESQ
2024-09-01 15:34:55 -05:00
parent d68fc89f75
commit ce4a736101
11 changed files with 117 additions and 62 deletions
@@ -21,10 +21,11 @@ class CreateMarketDataTable extends Migration
$table->float('fifty_two_week_high', 12, 4)->nullable();
$table->timestamp('last_dividend_date')->nullable();
$table->float('last_dividend_amount', 12, 4)->nullable();
$table->float('dividend_yield', 12, 4)->nullable();
$table->unsignedBigInteger('market_cap')->nullable();
$table->float('trailing_pe', 12, 4)->nullable();
$table->float('forward_pe', 12, 4)->nullable();
$table->float('pe_growth', 12, 4)->nullable();
$table->float('book_value', 12, 4)->nullable();
$table->json('meta_data')->nullable();
$table->timestamps();
});