|
|
|
@ -16,11 +16,11 @@ return new class extends Migration
|
|
|
|
$table->string('name');
|
|
|
|
$table->string('name');
|
|
|
|
$table->string('username');
|
|
|
|
$table->string('username');
|
|
|
|
$table->string('email')->unique();
|
|
|
|
$table->string('email')->unique();
|
|
|
|
$table->timestamp('email_verified_at')->nullable();
|
|
|
|
$table->timestampTz('email_verified_at')->nullable();
|
|
|
|
$table->string('password');
|
|
|
|
$table->string('password');
|
|
|
|
$table->boolean('is_active');
|
|
|
|
$table->boolean('is_active');
|
|
|
|
$table->rememberToken();
|
|
|
|
$table->rememberToken();
|
|
|
|
$table->timestamps();
|
|
|
|
$table->timestampsTz();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|