不要怂,就是干,撸起袖子干!

Commit 4e0ce386 by Matthew Williams Committed by Sushant

docs(migrations): use timestamps with seed (#11160)

1 parent f95d26f6
Showing with 3 additions and 1 deletions
......@@ -139,7 +139,9 @@ module.exports = {
return queryInterface.bulkInsert('Users', [{
firstName: 'John',
lastName: 'Doe',
email: 'demo@demo.com'
email: 'demo@demo.com',
createdAt: Date.now(),
updatedAt: Date.now()
}], {});
},
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!