clarion/db/migrate/20240923061535_add_terms_ac...

6 lines
158 B
Ruby
Raw Permalink Normal View History

2024-09-22 22:50:41 +03:00
class AddTermsAcceptedToVolunteer < ActiveRecord::Migration[7.1]
def change
add_column :volunteers, :terms_accepted, :boolean, default: false
end
end