class CreateComments < ActiveRecord::Migration[5.0] def change create_table :comments do |t| t.references :book, foreign_key: true t.string :text t.timestamps end end end