mirror of
https://github.com/discourse/discourse.git
synced 2025-02-07 03:44:15 +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
|