Add 'apps/arv-web/' from commit 'f9732ad8460d013c2f28363655d0d1b91894dca5'
[arvados.git] / services / api / db / migrate / 20140918153541_add_properties_to_node.rb
1 class AddPropertiesToNode < ActiveRecord::Migration
2   def up
3     add_column :nodes, :properties, :text
4   end
5
6   def down
7     remove_column :nodes, :properties
8   end
9 end