diff --git a/assets/migrations/2019_09_15_000010_create_tenants_table.php b/assets/migrations/2019_09_15_000010_create_tenants_table.php index a923f2c8..a5a947b7 100644 --- a/assets/migrations/2019_09_15_000010_create_tenants_table.php +++ b/assets/migrations/2019_09_15_000010_create_tenants_table.php @@ -16,7 +16,7 @@ return new class extends Migration public function up(): void { Schema::create('tenants', function (Blueprint $table) { - $table->string('id')->primary(); + $table->uuid('id')->primary(); // your custom columns may go here