osem-fcy/db/migrate/20200715001812_add_custom_css_to_confereneces.rb
Michael Ball 4c29d57aae Add a very basic custom_css property to a conference.
It is loaded on all pages for that conference.
2020-07-14 17:43:48 -07:00

5 lines
135 B
Ruby

class AddCustomCssToConfereneces < ActiveRecord::Migration[5.2]
def change
add_column :conferences, :custom_css, :text
end
end