Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. ActiveRecord::Schema.define(version: 2019_06_04_184340) do
  2.  
  3. create_table "authors", id: :string, force: :cascade do |t|
  4. t.string "name"
  5. t.datetime "created_at", null: false
  6. t.datetime "updated_at", null: false
  7. end
  8.  
  9. create_table "books", id: :string, force: :cascade do |t|
  10. t.string "title"
  11. t.string "author_id"
  12. t.datetime "created_at", null: false
  13. t.datetime "updated_at", null: false
  14. t.index ["author_id"], name: "index_books_on_author_id"
  15. end
  16.  
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement