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.
10 lines
215 B
Ruby
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
|