aboutsummaryrefslogtreecommitdiff
path: root/db/migrate/20210122050635_add_section_icon.rb
blob: a89c20110ec2641f8eb253d5e358d670c425ba79 (plain)
1
2
3
4
5
class AddSectionIcon < ActiveRecord::Migration[6.1]
  def change
    add_column :sections, :icon_name, :string, limit: 32, default: 'fa-neuter'
  end
end