mastodon/db/migrate/20221104133904_add_name_to_...

8 lines
159 B
Ruby

# frozen_string_literal: true
class AddNameToFeaturedTags < ActiveRecord::Migration[6.1]
def change
add_column :featured_tags, :name, :string
end
end