Skip to content

Commit 5c9759c

Browse files
committed
fix: Fix by reduce string size in seeder
1 parent 8037f1d commit 5c9759c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

database/seeds/ExampleSeeder.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ public function run()
2121
}
2222
for($i=0; $i<25; $i++){
2323
DB::table('example')->insert([
24-
'name' => $faker->sentence(4,true),
25-
'description' => $faker->paragraph(3,true),
24+
'name' => $faker->sentence(4,true),
25+
'description' => $faker->paragraph(1,true),
2626
'status_id' => $statusIds[random_int(0,count($statusIds) - 1)],
2727
]);
2828
}

0 commit comments

Comments
 (0)