mirror of
https://github.com/pelican-dev/panel.git
synced 2026-05-04 18:00:48 +03:00
Co-authored-by: DaneEveritt <dane@daneeveritt.com> Co-authored-by: danny6167 <danielb@purpleflaghosting.com> Co-authored-by: MrSoulPenguin <28676680+MrSoulPenguin@users.noreply.github.com>
30 lines
613 B
PHP
30 lines
613 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\ServerTransfer;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
class ServerTransferFactory extends Factory
|
|
{
|
|
/**
|
|
* The name of the factory's corresponding model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $model = ServerTransfer::class;
|
|
|
|
/**
|
|
* Define the model's default state.
|
|
*/
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'old_additional_allocations' => [],
|
|
'new_additional_allocations' => [],
|
|
'successful' => null,
|
|
'archived' => false,
|
|
];
|
|
}
|
|
}
|