* missing rails version 4.2 added to pre 5 migrations * updated carrierwave.rb and sitemap.rb with AWS_DEFAULT_REGION
10 lines
250 B
Ruby
10 lines
250 B
Ruby
class CreateJobApplications < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :job_applications do |t|
|
|
t.integer :job_listing_id
|
|
t.integer :user_id
|
|
t.text :cover_letter
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|