Sindbad~EG File Manager

Current Path : /proc/thread-self/cwd/database/migrations/
Upload File :
Current File : //proc/thread-self/cwd/database/migrations/2023_06_19_161930_create_perguntas_table.php

<?php

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

class CreatePerguntasTable extends Migration
{
    public function up()
    {
        Schema::create('perguntas', function (Blueprint $table) {
            $table->id();
            $table->foreignId('eixo_id')->constrained('eixos')->onDelete('cascade');
            $table->string('pergunta', 500);
            // Adicione outras colunas necessárias
            $table->timestamps();
        });
    }

    public function down()
    {
        Schema::dropIfExists('perguntas');
    }
}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists