id(); $table->string('name'); $table->string('year_group', 20)->nullable(); $table->boolean('is_active')->default(true); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('teams'); } };