shell bypass 403

UnknownSec Shell

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

name : 2021_04_08_140645_create_notifications_table.php
<?php

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

class CreateNotificationsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('notifications', function (Blueprint $table) {
            $table->id();
            $table->uuid('uid');
            $table->unsignedBigInteger('user_id')->default(1);
            $table->string('notification_for')->default('admin');
            $table->string('notification_type')->nullable();
            $table->text('message')->nullable();
            $table->boolean('mark_read')->default(false);

            $table->timestamps();


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

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

© 2025 UnknownSec
afwwrfwafr45458465
Password