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.
9 lines
169 B
Ruby
9 lines
169 B
Ruby
class CreateWebSections < ActiveRecord::Migration
|
|
def change
|
|
create_table :web_sections do |t|
|
|
t.text :name
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|