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

7 lines
181 B
Ruby

# frozen_string_literal: true
class AddAttendedToRegistrations < ActiveRecord::Migration[4.2]
def change
add_column :registrations, :attended, :boolean, default: 0
end
end