Files
nairobi/db/migrate/20180109101656_create_banner_sections.rb
iagirre 3690cae458 Apply banner style to the new banners
Banner sections can be saved (one banner can appear in several sections)
If the hex color is changed in the textfield, the color of the color picker changes.
2018-07-12 10:16:47 -04:00

10 lines
215 B
Ruby

class CreateBannerSections < ActiveRecord::Migration
def change
create_table :banner_sections do |t|
t.integer :banner_id
t.integer :web_section_id
t.timestamps null: false
end
end
end