Files
nairobi/db/migrate/20180109081115_add_settings_to_banners.rb
iagirre 6d6da8affc Add form fields to set the colours and the sections for the banner
Add migrations to store the information in the database
2018-07-12 10:16:47 -04:00

7 lines
170 B
Ruby

class AddSettingsToBanners < ActiveRecord::Migration
def change
add_column :banners, :background_color, :text
add_column :banners, :font_color, :text
end
end