uuid("uuid")->primary()->unique(); $table->string("name", 255); $table->string("description", 10000); $table->decimal("price"); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('products'); } }