8784: Fix test for latest firefox.
[arvados.git] / services / api / db / migrate / 20140321191343_add_repository_column_to_job.rb
1 class AddRepositoryColumnToJob < ActiveRecord::Migration
2   def up
3     add_column :jobs, :repository, :string
4   end
5
6   def down
7     remove_column :jobs, :repository
8   end
9 end