string('uuid', 36)->primary(); // don't change this $table->string('domain', 255)->index(); // don't change this // your indexed columns go here $table->json('data')->default('{}'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('tenants'); } }