shell bypass 403

UnknownSec Shell


name : 2021_12_23_115526_AddFileSizeColumnToLessonsTable.php
<?php

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

class AddFileSizeColumnToLessonsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
       Schema::table('lessons', function ($table) {
            if (!Schema::hasColumn('lessons', 'file_size')) {
                $table->double('old_file_size')->nullable();
            }
            if (!Schema::hasColumn('lessons', 'file_size')) {
                $table->double('file_size')->nullable();
            }
        });
       Schema::table('course_exercises', function ($table) {
            if (!Schema::hasColumn('course_exercises', 'file_size')) {
                $table->double('old_file_size')->nullable();
            }
            if (!Schema::hasColumn('course_exercises', 'file_size')) {
                $table->double('file_size')->nullable();
            }
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        //
    }
}

© 2025 UnknownSec
afwwrfwafr45458465
Password