mirror of https://github.com/markbates/pkger.git
33 lines
742 B
TOML
33 lines
742 B
TOML
[[scenario]]
|
|
name = "lots of widgets"
|
|
|
|
[[scenario.table]]
|
|
name = "widgets"
|
|
|
|
[[scenario.table.row]]
|
|
id = "<%= uuidNamed("widget") %>"
|
|
name = "This is widget #1"
|
|
body = "some widget body"
|
|
created_at = "<%= now() %>"
|
|
updated_at = "<%= now() %>"
|
|
|
|
[[scenario.table.row]]
|
|
id = "<%= uuid() %>"
|
|
name = "This is widget #2"
|
|
body = "some widget body"
|
|
created_at = "<%= now() %>"
|
|
updated_at = "<%= now() %>"
|
|
|
|
[[scenario.table]]
|
|
name = "users"
|
|
|
|
[[scenario.table.row]]
|
|
id = "<%= uuid() %>"
|
|
name = "Mark Bates"
|
|
admin = true
|
|
age = 41
|
|
widget_id = "<%= uuidNamed("widget") %>"
|
|
created_at = "<%= now() %>"
|
|
updated_at = "<%= now() %>"
|
|
|