| 1234567891011121314151617181920212223242526 |
- <?php
- use Illuminate\Database\Migrations\Migration;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Support\Facades\Schema;
- // Таблица блоков контента — переиспользуемые HTML-фрагменты, подключаемые на страницах
- return new class extends Migration
- {
- public function up(): void
- {
- Schema::create('blocks', function (Blueprint $table) {
- $table->id();
- $table->string('name')->unique(); // системный идентификатор блока (латиница): hero, footer_contacts
- $table->string('title'); // читаемое название для отображения в админке
- $table->longText('content')->nullable(); // HTML-контент блока
- $table->boolean('is_active')->default(true);
- $table->timestamps();
- });
- }
- public function down(): void
- {
- Schema::dropIfExists('blocks');
- }
- };
|