id(); $table->ulid(); $table->string('code'); $table->string('name'); $table->string('year_study'); $table->string('semester'); $table->date('date_start'); $table->date('date_end'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('terms'); } };