6 lines
132 B
Ruby
6 lines
132 B
Ruby
|
|
class AddConferenceIdToVersions < ActiveRecord::Migration
|
||
|
|
def change
|
||
|
|
add_column :versions, :conference_id, :integer
|
||
|
|
end
|
||
|
|
end
|