about summary refs log tree commit diff
path: root/db/migrate/20221104133904_add_name_to_featured_tags.rb
blob: 7c8c8ebfbce2b67c3828a79a81b1938e26b197b0 (plain) (blame)
1
2
3
4
5
class AddNameToFeaturedTags < ActiveRecord::Migration[6.1]
  def change
    add_column :featured_tags, :name, :string
  end
end