| 123456789101112131415161718192021222324 |
- <?php
- use Illuminate\Database\Migrations\Migration;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Support\Facades\Schema;
- // Таблица настроек сайта: key-value хранилище (телефон, соцсети, почта и т.д.)
- return new class extends Migration
- {
- public function up(): void
- {
- Schema::create('settings', function (Blueprint $table) {
- $table->id();
- $table->string('key')->unique(); // системный ключ: phone, telegram, email…
- $table->text('value')->nullable(); // значение настройки
- $table->timestamps();
- });
- }
- public function down(): void
- {
- Schema::dropIfExists('settings');
- }
- };
|