diff --git a/db/migrate/20130712072609_add_attended_to_registrations.rb b/db/migrate/20130712072609_add_attended_to_registrations.rb new file mode 100644 index 00000000..c7420f04 --- /dev/null +++ b/db/migrate/20130712072609_add_attended_to_registrations.rb @@ -0,0 +1,5 @@ +class AddAttendedToRegistrations < ActiveRecord::Migration + def change + add_column :registrations, :attended, :boolean, :default => 0 + end +end