1
0
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:
Toby Zerner
2015-01-21 12:03:30 +10:30
parent 7f22498e6c
commit bf0ea864e4

View File

@@ -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;