negos_app/db/migrate/20170912112150_add_images_to_reseauxes.rb
2017-09-19 11:33:15 +02:00

9 lines
240 B
Ruby

class AddImagesToReseauxes < ActiveRecord::Migration
def change
add_column :reseauxes, :logo_image_file_id, :integer
add_column :reseauxes, :background_image_file_id, :integer
add_column :reseauxes, :title, :string
end
end