2026_02_12_213712_create_settings_table.php 535 B

1234567891011121314151617181920212223
  1. <?php
  2. use Illuminate\Database\Migrations\Migration;
  3. use Illuminate\Database\Schema\Blueprint;
  4. use Illuminate\Support\Facades\Schema;
  5. return new class extends Migration
  6. {
  7. public function up(): void
  8. {
  9. Schema::create('settings', function (Blueprint $table) {
  10. $table->id();
  11. $table->string('key')->unique();
  12. $table->text('value')->nullable();
  13. $table->timestamps();
  14. });
  15. }
  16. public function down(): void
  17. {
  18. Schema::dropIfExists('settings');
  19. }
  20. };