X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/e5c4e0ac86cdfc9399ee11ca07d1dea7d2151e8e..refs/pull/846/head:/database/factories/ModelFactory.php diff --git a/database/factories/ModelFactory.php b/database/factories/ModelFactory.php index 43e214386..c68f5c1e1 100644 --- a/database/factories/ModelFactory.php +++ b/database/factories/ModelFactory.php @@ -43,7 +43,8 @@ $factory->define(BookStack\Page::class, function ($faker) { 'name' => $faker->sentence, 'slug' => str_random(10), 'html' => $html, - 'text' => strip_tags($html) + 'text' => strip_tags($html), + 'revision_count' => 1 ]; }); @@ -69,4 +70,14 @@ $factory->define(BookStack\Image::class, function ($faker) { 'type' => 'gallery', 'uploaded_to' => 0 ]; +}); + +$factory->define(BookStack\Comment::class, function($faker) { + $text = $faker->paragraph(1); + $html = '

' . $text. '

'; + return [ + 'html' => $html, + 'text' => $text, + 'parent_id' => null + ]; }); \ No newline at end of file