🚀 Hostinger Optimized
🖥️ Server: LiteSpeed
💻 System: Linux s20058.bom1.stableserver.net 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64
👤 User: skhata (1324)
🐘 PHP: 8.4.20
🚫 Disabled: ✨ NONE

💻 Terminal

📁 /home/skhata/chandrasons.com/public
$

📄 2024_01_01_000002_create_settings_table.php

📁 Path: //home7/skhata/chandrasons.com/database/migrations/2024_01_01_000002_create_settings_table.php
📊 Size: 584 B
🔒 Perm: 0644
📝 MIME: text/x-php
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration {
    public function up(): void {
        Schema::create('settings', function (Blueprint $table) {
            $table->id();
            $table->string('key', 255)->unique();
            $table->longText('value')->nullable();
            $table->string('group', 100)->default('general');
            $table->timestamps();
        });
    }
    public function down(): void { Schema::dropIfExists('settings'); }
};
← Back📥 Raw✏️ Edit🔒 Chmod
✨ File Manager Magic ✨