shell bypass 403

UnknownSec Shell

: /home/bouloter/sms/database/migrations/ [ drwxr-xr-x ]

name : 2020_12_17_132523_create_contacts_custom_field_table.php
<?php

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

class CreateContactsCustomFieldTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('contacts_custom_field', function (Blueprint $table) {
            $table->id();
            $table->uuid('uid');
            $table->unsignedBigInteger('contact_id');
            $table->string('name');
            $table->string('tag');
            $table->string('type')->default('text');
            $table->boolean('required')->default(false);
            $table->string('value')->nullable();
            $table->timestamps();

            //foreign
            $table->foreign('contact_id')->references('id')->on('contacts')->onDelete('cascade');
        });
    }

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

© 2025 UnknownSec
afwwrfwafr45458465
Password