8784: Fix test for latest firefox.
[arvados.git] / services / api / db / migrate / 20140924091559_add_job_uuid_to_nodes.rb
1 class AddJobUuidToNodes < ActiveRecord::Migration
2   def up
3     change_table :nodes do |t|
4       t.column :job_uuid, :string
5     end
6   end
7
8   def down
9     change_table :nodes do |t|
10       t.remove :job_uuid
11     end
12   end
13 end