mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
7 lines
196 B
Ruby
7 lines
196 B
Ruby
|
class AddShowPostsToBadges < ActiveRecord::Migration
|
||
|
def change
|
||
|
# show posts to users on badge show page
|
||
|
add_column :badges, :show_posts, :boolean, null: false, default: false
|
||
|
end
|
||
|
end
|