HEX
Server: Apache/2.4.57 (Unix) OpenSSL/1.1.1k
System: Linux server.eshhar.net 4.18.0-553.89.1.el8_10.x86_64 #1 SMP Mon Dec 8 03:53:08 EST 2025 x86_64
User: xdas (1048)
PHP: 7.4.33
Disabled: mail,sendmail
Upload Files
File: //proc/thread-self/cwd/oldsite/database/migrations/2014_04_21_153339_create_settings_table.php
<?php

use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateSettingsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('settings', function (Blueprint $table) {
            $table->increments('id');
            // $table->string('taxes_parst')->nullable();
            $table->text('meta_description_ar')->nullable();
            $table->text('meta_description_en')->nullable();
            $table->text('meta_tags')->nullable();
            $table->text('meta_title')->nullable();
            $table->text('notes')->nullable();
            $table->string('web_name_ar')->nullable();
            $table->string('web_name_en')->nullable();
            $table->string('owner_name_ar')->nullable();
            $table->string('owner_name_en')->nullable();
            $table->string('phone')->nullable();
            $table->string('address')->nullable();
            $table->string('whatsapp')->nullable();
            $table->string('email');
            $table->string('web_img')->nullable();
            $table->string('logo_img')->nullable();
            $table->string('icon_img')->nullable();
            $table->text('head_code')->nullable();
            $table->enum('maintans_status', ['0', '1'])->default('0');
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('settings');
    }
}