id(); $table->string('name'); $table->timestamps(); }); // Insert predefined roles // DB::table('roles')->insert([ // ['name' => 'Admin'], // ['name' => 'Coordinator'], // ['name' => 'Faculty'] // ]); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('roles'); } };