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