6 lines
142 B
Ruby
6 lines
142 B
Ruby
|
|
class AddRequireRegistrationToEvents < ActiveRecord::Migration
|
||
|
|
def change
|
||
|
|
add_column :events, :require_registration, :boolean
|
||
|
|
end
|
||
|
|
end
|