class CreatePhrasingImages

Public Instance Methods

change() click to toggle source
# File lib/generators/phrasing_plus/templates/db/migrate/create_phrasing_images.rb, line 2
def change
  create_table :phrasing_images do |t|
    t.string :key
    t.string :image

    t.timestamps null: false
  end
end