discourse/db/migrate/20160920165833_add_moderato...

6 lines
152 B
Ruby

class AddModeratorToInvites < ActiveRecord::Migration
def change
add_column :invites, :moderator, :boolean, default: false, null: false
end
end