Require code of conduct acceptance on registration

This commit is contained in:
James Mason 2018-03-16 16:23:01 -07:00 committed by Ana María Martínez Gómez
parent 95196c7f80
commit 03ef28e74d
9 changed files with 91 additions and 8 deletions

View file

@ -0,0 +1,5 @@
class AddAcceptedCodeOfConductToRegistrations < ActiveRecord::Migration[5.0]
def change
add_column :registrations, :accepted_code_of_conduct, :boolean
end
end