I tried to set boolean for status but i found the column 'status' cannot be null. What should I do? Below is the code I set for create user table.
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('email')->unique();
$table->string('password');
$table->string('role')->nullable();
$table->boolean('status');
$table->string('address')->nullable();
$table->string('city')->nullable();
$table->string('postal_code')->nullable();
$table->string('phone')->nullable();
$table->rememberToken();
$table->timestamps();
});
}