class CreateJobs < ActiveRecord::Migration
  def self.up
    create_table "jobs", :force => true do |t|
      t.column :title, :string
      t.column :body, :text
      t.column :user_id, :integer
      t.column :created_at, :datetime
      t.column :updated_at, :datetime
    end
  end

  def self.down
    drop_table "jobs"
  end
end
