36 lines
872 B
PHP
36 lines
872 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*/
|
|
public function up(): void
|
|
{
|
|
Schema::create('alunos', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->integer('id_responsavel');
|
|
$table->integer('id_turma');
|
|
$table->string('nome');
|
|
$table->date('data_nascimento');
|
|
$table->date('data_inscricao');
|
|
$table->date('data_encerramento');
|
|
$table->string('cpf')->unique();
|
|
$table->json('endereco');
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('alunos');
|
|
}
|
|
};
|