2026_05_06_202015_create_settings_table.php 765 B

123456789101112131415161718192021222324
  1. <?php
  2. use Illuminate\Database\Migrations\Migration;
  3. use Illuminate\Database\Schema\Blueprint;
  4. use Illuminate\Support\Facades\Schema;
  5. // Таблица настроек сайта: key-value хранилище (телефон, соцсети, почта и т.д.)
  6. return new class extends Migration
  7. {
  8. public function up(): void
  9. {
  10. Schema::create('settings', function (Blueprint $table) {
  11. $table->id();
  12. $table->string('key')->unique(); // системный ключ: phone, telegram, email…
  13. $table->text('value')->nullable(); // значение настройки
  14. $table->timestamps();
  15. });
  16. }
  17. public function down(): void
  18. {
  19. Schema::dropIfExists('settings');
  20. }
  21. };