Add 'apps/arv-web/' from commit 'f9732ad8460d013c2f28363655d0d1b91894dca5'
[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