6 lines
170 B
Ruby
6 lines
170 B
Ruby
|
|
class AddMakeConferencePublicToConference < ActiveRecord::Migration
|
||
|
|
def change
|
||
|
|
add_column :conferences, :make_conference_public, :boolean, default: false
|
||
|
|
end
|
||
|
|
end
|