* missing rails version 4.2 added to pre 5 migrations * updated carrierwave.rb and sitemap.rb with AWS_DEFAULT_REGION
16 lines
377 B
Ruby
16 lines
377 B
Ruby
class CreateJobListings < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :job_listings do |t|
|
|
t.integer :organization_id
|
|
t.string :name
|
|
t.text :body_html
|
|
t.string :category
|
|
t.string :url
|
|
t.string :email
|
|
t.string :city
|
|
t.string :state
|
|
t.string :country
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|