1
0
mirror of https://github.com/flarum/core.git synced 2025-07-30 21:20:24 +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:
Toby Zerner
2015-01-21 12:03:30 +10:30
parent 256955ed28
commit 0b2f645d2a

View File

@@ -37,8 +37,7 @@ class DiscussionTableSeeder extends Seeder
'time' => $discussion->start_time,
'user_id' => $discussion->start_user_id,
'type' => 'comment',
'content' => $faker->realText(rand(100, 1000)),
'html_content' => $faker->realText(rand(100, 1000))
'content' => $faker->realText(rand(100, 1000))
]);
$discussion->start_post_id = $post->id;