id(); $table->string('author', 128); $table->string('car_name', 128)->nullable(); $table->tinyInteger('rating')->default(5); // 1–5 звёзд $table->text('body'); // текст отзыва $table->date('review_date')->nullable(); // дата (отображаемая) $table->boolean('is_active')->default(true); $table->unsignedSmallInteger('sort_order')->default(0); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('reviews'); } };