Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. author = Author.create(name: 'Yukihiro Matsumoto')
  2. # (0.1ms) begin transaction
  3. # Author Create (0.6ms) INSERT INTO "authors" ("id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", "9bf631fc-6bed-4cb0-b062-102476609451"], ["name", "Yukihiro Matsumoto"], ["created_at", "2019-06-06 02:18:45.011828"], ["updated_at", "2019-06-06 02:18:45.011828"]]
  4. # (4.5ms) commit transaction
  5. # => #<Author id: "9bf631fc-6bed-4cb0-b062-102476609451", name: "Yukihiro Matsumoto", created_at: "2019-06-06 02:18:45", updated_at: "2019-06-06 02:18:45">
  6.  
  7. Book.create(title: 'The Ruby Programming Language', author: author)
  8. # (0.1ms) begin transaction
  9. # Book Create (0.4ms) INSERT INTO "books" ("id", "title", "author_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", "1ae09f6e-59e5-4cb2-b963-a1ea70a81bc1"], ["title", "The Ruby Programming Language"], ["author_id", "9bf631fc-6bed-4cb0-b062-102476609451"], ["created_at", "2019-06-06 02:18:45.032894"], ["updated_at", "2019-06-06 02:18:45.032894"]]
  10. # (4.6ms) commit transaction
  11. # => #<Book id: "1ae09f6e-59e5-4cb2-b963-a1ea70a81bc1", title: "The Ruby Programming Language", author_id: "9bf631fc-6bed-4cb0-b062-102476609451", created_at: "2019-06-06 02:18:45", updated_at: "2019-06-06 02:18:45">
  12.  
  13. Book.create(title: 'Ruby Best Practices', author: author)
  14. # (0.1ms) begin transaction
  15. # Book Create (0.4ms) INSERT INTO "books" ("id", "title", "author_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", "2bacf441-66dc-43d4-9548-4a4839be88e2"], ["title", "Ruby Best Practices"], ["author_id", "9bf631fc-6bed-4cb0-b062-102476609451"], ["created_at", "2019-06-06 02:18:54.957490"], ["updated_at", "2019-06-06 02:18:54.957490"]]
  16. # (6.8ms) commit transaction
  17. # => #<Book id: "2bacf441-66dc-43d4-9548-4a4839be88e2", title: "Ruby Best Practices", author_id: "9bf631fc-6bed-4cb0-b062-102476609451", created_at: "2019-06-06 02:18:54", updated_at: "2019-06-06 02:18:54">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement