mirror of
https://github.com/discourse/discourse.git
synced 2024-12-21 01:13:45 +08:00
7 lines
195 B
Ruby
7 lines
195 B
Ruby
|
# 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
|