79222894

Date: 2024-11-25 11:50:50
Score: 1
Natty:
Report link
class Product extends Model
{
    use HasUuids;
}

Schema::create('products', function (Blueprint $table) {
    $table->uuid('id')->primary()->unique()->index();
    $table->string('name', 100);
    $table->text('description');
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Muhammed Salama