]> BookStack Code Mirror - bookstack/blobdiff - database/factories/ModelFactory.php
Updated 'Spanish Argentina' translation.
[bookstack] / database / factories / ModelFactory.php
index b03e34b9b9c63d0a4f05edc687366582ff6ba894..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
+        'parent_id' => null
     ];
 });
\ No newline at end of file