Changeset b375b43 for database/factories
- Timestamp:
- 10/24/21 00:13:55 (3 years ago)
- Branches:
- develop, master
- Children:
- 195c3cf
- Parents:
- 7fa13fa
- Location:
- database/factories
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
database/factories/DepartmentFactory.php
r7fa13fa rb375b43 34 34 'no_of_folders' => 0, 35 35 'user_id' => "1", 36 'created_at' => $this->faker->dateTime()36 'created_at' => now() 37 37 ]; 38 38 } -
database/factories/FolderFactory.php
r7fa13fa rb375b43 43 43 'department_id' => $deptId, 44 44 'is_important' => $this->faker->boolean, 45 'created_at' => $this->faker->dateTime()45 'created_at' => now() 46 46 ]; 47 47 }
Note:
See TracChangeset
for help on using the changeset viewer.