mirror of
https://github.com/pterodactyl/panel.git
synced 2026-06-02 11:00:44 -05:00
32 lines
642 B
PHP
32 lines
642 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use Pterodactyl\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.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function definition()
|
|
{
|
|
return [
|
|
'old_additional_allocations' => [],
|
|
'new_additional_allocations' => [],
|
|
'successful' => null,
|
|
'archived' => false,
|
|
];
|
|
}
|
|
}
|