uuid('id')->primary(); $table->string('name'); $table->string('nrk')->unique(); $table->string('role_name', 30); // $table->timestamp('email_verified_at')->nullable(); $table->string('password'); $table->tinyInteger('is_lock_upload')->nullable(); $table->timestamp('lock_upload_time')->nullable(); $table->string('lock_upload_by')->nullable(); $table->rememberToken(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } }