id(); $table->string('name')->unique(); $table->string('slug')->unique(); $table->boolean('active')->default(true); $table->timestamps(); }); Schema::enableForeignKeyConstraints(); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('lecturers'); } };