class CreateBannerGroups

Public Instance Methods

change() click to toggle source
# File lib/generators/dummy/templates/migrations/create_banner_groups.rb, line 2
def change
  create_table :banner_groups do |t|
    t.integer   :banner_page_id
    t.integer   :item_position
    t.string    :title
    t.string    :image_uid

    t.timestamps(null: false)
  end
end