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