string('id', 36)->primary(); // 36 characters is the default uuid length // your custom columns may go here $table->timestamps(); $table->json('data')->default('{}'); }); } /** * Reverse the migrations. * * @return void */ public function down(): void { Schema::dropIfExists('tenants'); } }