bigIncrements('nip'); $table->string('nama_guru', 100)->nullable(false); $table->string('nomor_hp', 13)->nullable(false); $table->string('password', 8)->nullable(false); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('guru'); } };