mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 15:35:12 +08:00
6 lines
152 B
Ruby
6 lines
152 B
Ruby
|
class AddModeratorToInvites < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :invites, :moderator, :boolean, default: false, null: false
|
||
|
end
|
||
|
end
|