uuid('id')->primary(); $table->string('name'); $table->string('address')->nullable(); $table->string('address_url')->nullable(); $table->string('url')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('locations'); } };