]> BookStack Code Mirror - bookstack/blobdiff - database/factories/ModelFactory.php
Updated 'Spanish Argentina' translation.
[bookstack] / database / factories / ModelFactory.php
index b5bb32c1183e58fa9f1a5a49980c5dd920c3c067..c68f5c1e15ac8e4ce5ef86dc6e17be38a8a33928 100644 (file)
@@ -73,11 +73,11 @@ $factory->define(BookStack\Image::class, function ($faker) {
 });
 
 $factory->define(BookStack\Comment::class, function($faker) {
-    $text = $faker->paragraph(3);
+    $text = $faker->paragraph(1);
     $html = '<p>' . $text. '</p>';
     return [
         'html' => $html,
-        'text' => '#' . $text,
-        'active' => 1
+        'text' => $text,
+        'parent_id' => null
     ];
 });
\ No newline at end of file