id(); $table->string('name'); $table->string('email')->unique(); $table->string('password'); $table->integer('type')->nullable()->default(1); $table->integer('status')->nullable()->default(1); $table->rememberToken(); $table->timestamp('active_at')->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } }