move to uuids for portfolios, users, and all market data

This commit is contained in:
hackerESQ
2024-08-07 12:43:49 -05:00
parent 45b3800389
commit 4a2da61fa6
13 changed files with 47 additions and 116 deletions
@@ -14,9 +14,9 @@ class CreateDividendsTable extends Migration
public function up()
{
Schema::create('dividends', function (Blueprint $table) {
$table->id();
$table->uuid('id')->primary();
$table->date('date');
$table->string('symbol');
$table->string('symbol', 15);
$table->float('dividend_amount', 12, 4);
$table->timestamps();
});