discourse/db/migrate/20241121000131_add_post_header_to_badge.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
195 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddPostHeaderToBadge < ActiveRecord::Migration[7.1]
def change
add_column :badges, :show_in_post_header, :boolean, default: false, null: false
end
end