sadem_app/db/migrate/20200225205920_add_footer_to_m_odrs.rb
Nicolas Bally f5b030b522 suite
2020-02-25 22:33:47 +01:00

11 lines
346 B
Ruby

class AddFooterToMOdrs < ActiveRecord::Migration[6.0]
def change
add_column :m_odrs, :footer_image_file_id, :integer
add_column :m_odrs, :footer_image_width, :integer
add_column :m_odrs, :footer_image_link, :string
add_column :m_odrs, :banner_image_link, :string
add_column :m_odrs, :logo_image_link, :string
end
end