8 lines
254 B
Ruby
8 lines
254 B
Ruby
class AddInfosToMenuItems < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :menu_items, :icon_image_file_id, :integer
|
|
add_column :menu_items, :icon_b_image_file_id, :integer
|
|
add_column :menu_items, :primary_description, :text
|
|
end
|
|
end
|