Files
citrus/database/migrations/2026_02_06_231314_create_testimonials_table.php
T

36 lines
969 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('testimonials', function (Blueprint $table) {
$table->id();
$table->foreignId('page_id')->nullable()->constrained()->onDelete('cascade');
$table->string('name');
$table->string('position')->nullable();
$table->text('content');
$table->integer('rating')->default(5);
$table->string('avatar')->nullable();
$table->boolean('is_active')->default(true);
$table->integer('sort_order')->default(0);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('testimonials');
}
};