8784: Fix test for latest firefox.
[arvados.git] / services / api / db / migrate / 20130105224358_rename_metadata_class.rb
1 class RenameMetadataClass < ActiveRecord::Migration
2   def up
3     rename_column :metadata, :metadatum_class, :metadata_class
4   end
5
6   def down
7     rename_column :metadata, :metadata_class, :metadatum_class
8   end
9 end