This commit is contained in:
Andras Bacsai
2023-06-15 13:28:16 +02:00
parent 890f0819ad
commit cbfc490d95
12 changed files with 75 additions and 43 deletions

View File

@@ -18,7 +18,6 @@ class UserFactory extends Factory
public function definition(): array
{
return [
'uuid' => Str::uuid(),
'email' => fake()->unique()->safeEmail(),
'email_verified_at' => now(),
'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password

View File

@@ -17,6 +17,7 @@ return new class extends Migration
$table->boolean('is_jump_server')->default(false);
$table->boolean('is_build_server')->default(false);
$table->boolean('is_validated')->default(false);
$table->boolean('is_docker_installed')->default(false);
$table->foreignId('server_id');
$table->timestamps();
});