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