mirror of
https://github.com/flarum/core.git
synced 2025-07-25 18:51:40 +02:00
Don't need to generate html content
as it’s generated on demand by the PostSerializer (for now)
This commit is contained in:
@@ -37,8 +37,7 @@ class DiscussionTableSeeder extends Seeder
|
|||||||
'time' => $discussion->start_time,
|
'time' => $discussion->start_time,
|
||||||
'user_id' => $discussion->start_user_id,
|
'user_id' => $discussion->start_user_id,
|
||||||
'type' => 'comment',
|
'type' => 'comment',
|
||||||
'content' => $faker->realText(rand(100, 1000)),
|
'content' => $faker->realText(rand(100, 1000))
|
||||||
'html_content' => $faker->realText(rand(100, 1000))
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$discussion->start_post_id = $post->id;
|
$discussion->start_post_id = $post->id;
|
||||||
|
Reference in New Issue
Block a user