6 lines
142 B
Ruby
6 lines
142 B
Ruby
|
class AddContestIdToSoftapplications < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :softapplications, :contest_id, :integer
|
||
|
end
|
||
|
end
|