mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 07:29:22 +08:00
11 lines
271 B
Ruby
11 lines
271 B
Ruby
class AddModeratorToUser < ActiveRecord::Migration
|
|
def up
|
|
add_column :users, :moderator, :boolean, default: false
|
|
execute "UPDATE users SET trust_level = 1, moderator = 't' where trust_level = 5"
|
|
end
|
|
|
|
def down
|
|
remove_column :users, :moderator
|
|
end
|
|
end
|