mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-11-06 00:50:36 +03:00
Updated uses of user ID to nullify on delete. Added testing to cover deletion of user relations. Added model factories to support changes and potential other tests. Cleans existing ID references in the DB via migration.
34 lines
806 B
PHP
34 lines
806 B
PHP
<?php
|
|
|
|
namespace Database\Factories\Activity\Models;
|
|
|
|
use BookStack\Activity\WatchLevels;
|
|
use BookStack\Entities\Models\Book;
|
|
use BookStack\Users\Models\User;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
/**
|
|
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\BookStack\Activity\Models\Watch>
|
|
*/
|
|
class WatchFactory extends Factory
|
|
{
|
|
protected $model = \BookStack\Activity\Models\Watch::class;
|
|
|
|
/**
|
|
* Define the model's default state.
|
|
*
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function definition(): array
|
|
{
|
|
$book = Book::factory()->create();
|
|
|
|
return [
|
|
'user_id' => User::factory(),
|
|
'watchable_id' => $book->id,
|
|
'watchable_type' => 'book',
|
|
'level' => WatchLevels::NEW,
|
|
];
|
|
}
|
|
}
|