increments('id'); $table->string('username')->unique(); $table->string('password'); $table->string('name')->nullable(); $table->string('first_name', 100)->nullable(); $table->string('last_name', 100)->nullable(); $table->string('email')->nullable(); $table->char('mobile', 11)->nullable(); $table->string('position')->nullable(); $table->unsignedTinyInteger('province_id')->nullable(); $table->foreign('province_id') ->references('id') ->on('provinces'); $table->unsignedSmallInteger('city_id')->nullable(); $table->foreign('city_id') ->references('id') ->on('cities'); $table->rememberToken(); $table->boolean('confirmed')->default(0); $table->boolean('enabled')->default(1); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } }