id(); $table->string('name'); $table->string('slug')->nullable()->index(); $table->text('bio')->nullable(); $table->string('npub', 63)->nullable()->index(); $table->string('pubkey', 64)->nullable()->index(); $table->string('website')->nullable(); $table->boolean('active')->default(true); $table->unsignedBigInteger('created_by')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('lecturers'); } };