mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 19:03:13 +08:00
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
|