osem-fcy/db/migrate/20130712072609_add_attended_to_registrations.rb

8 lines
176 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddAttendedToRegistrations < ActiveRecord::Migration
def change
2014-07-21 14:49:05 +02:00
add_column :registrations, :attended, :boolean, default: 0
end
end