Server side support for inviting as a moderator via the wizard

This commit is contained in:
Robin Ward
2016-09-20 13:12:00 -04:00
parent 42f6e52dc6
commit b0ee7930e8
7 changed files with 64 additions and 12 deletions

View File

@@ -0,0 +1,5 @@
class AddModeratorToInvites < ActiveRecord::Migration
def change
add_column :invites, :moderator, :boolean, default: false, null: false
end
end