Files
nairobi/db/migrate/20180115075542_create_web_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

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