increments('id'); $table->string('name'); $table->string('first_name')->nullable(); $table->string('last_name')->nullable(); $table->string('email')->unique(); $table->string('password'); $table->string('code')->nullable(); $table->string('location')->nullable(); $table->string('hub')->nullable(); $table->unsignedBigInteger('flights')->nullable(); $table->float('hours')->nullable(); $table->float('pay')->nullable(); $table->boolean('confirmed')->nullable(); $table->boolean('retired')->nullable(); $table->dateTime('last_pirep')->nullable(); $table->rememberToken(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('users'); } }