uuid('id')->primary(); $table->string('name'); $table->string('path')->nullable(); $table->boolean('is_public')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('hubs'); } }