| 
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 | # File 'lib/generators/dummy/templates/migrations/create_books.rb', line 2
def up
  create_table :books do |t|
    t.string    :title, null: false
    t.integer   :year
    t.integer   :author_id
    t.string    :genre
    t.text      :summary_html
    t.boolean   :active
    t.datetime  :published_at
    t.decimal   :price, precision: 8, scale: 2
    t.integer   :stars
    t.string    :cover_image_uid
    t.timestamps(null: false)
  end
  add_index :books, :author_id
  Book.create_translation_table! description: :string
end |