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

7 lines
176 B
Ruby

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