id(); $table->string('name', 50); $table->date('start_date'); $table->date('end_date'); $table->boolean('is_current')->default(false); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('seasons'); } };