🗑️ Remove outdated migration files for einundzwanzig_plebs and pulse tables, restructure directory, and update testing suite with new factories and Livewire tests.

This commit is contained in:
HolgerHatGarKeineNode
2026-01-18 22:23:23 +01:00
parent 00707797e5
commit 31fb04caaa
16 changed files with 1161 additions and 7 deletions

View File

@@ -0,0 +1,26 @@
<?php
namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
/**
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\EinundzwanzigPleb>
*/
class EinundzwanzigPlebFactory extends Factory
{
/**
* Define the model's default state.
*
* @return array<string, mixed>
*/
public function definition(): array
{
return [
'pubkey' => $this->faker->sha256(),
'npub' => $this->faker->word(),
'email' => $this->faker->safeEmail(),
'association_status' => \App\Enums\AssociationStatus::DEFAULT,
];
}
}