id(); $table->string('first_name'); $table->string('last_name'); $table->string('username'); $table->string('email')->unique(); $table->string('password'); $table->json('img')->nullable(); $table->integer('status')->nullable()->default(1); $table->timestamp('active_at')->nullable(); $table->timestamp('login_at')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } }