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

This commit is contained in:
hackerESQ
2024-08-07 12:45:01 -05:00
parent 45b3800389
commit 60db0a06d3
15 changed files with 55 additions and 120 deletions
@@ -14,9 +14,9 @@ class CreateSplitsTable extends Migration
public function up()
{
Schema::create('splits', function (Blueprint $table) {
$table->id();
$table->uuid('id')->primary();
$table->date('date');
$table->string('symbol');
$table->string('symbol', 15);
$table->float('split_amount', 12, 4);
$table->timestamps();
});