Sindbad~EG File Manager
<?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