mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 19:37:55 +08:00
4c25fedf70
Read a every post in a topic that if 50 posts or longer
6 lines
152 B
Ruby
6 lines
152 B
Ruby
class AddAutoRevokeToBadges < ActiveRecord::Migration
|
|
def change
|
|
add_column :badges, :auto_revoke, :boolean, default: true, null: false
|
|
end
|
|
end
|