Seeders
component {
function run( qb, mockdata ) {
qb.table( "users" ).insert(
mockdata.mock(
$num = 25,
"firstName": "fname",
"lastName": "lname",
"email": "email",
"password": "string-secure"
)
);
}
}Last updated
Was this helpful?