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'); } };