-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ba09918
commit 754db2f
Showing
1 changed file
with
10 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,4 +16,13 @@ Following is steps to seed the database: | |
- 001.001_table_user_group.csv | ||
- 002.001_table_user_permission.csv | ||
- 003.001_table_user.csv | ||
- Exported CSV must still contain fields/columns name at first row | ||
- CSV data rules: | ||
- Exported CSV must still contain fields/columns name at first row | ||
- Null values must be exported as `null` not in quote or empty quote | ||
|
||
CSV Example: | ||
|
||
``` | ||
"uid","email","""password""","name","role_id","group_id","is_active","is_approved","created_at" | ||
"1","[email protected]","","BOT",null,null,"true","true","2019-07-30 19:00:15" | ||
``` |