view db/migrate/20090323224724_add_type_to_enumerations.rb @ 566:b18f19710242 feature_36

Eliminate duplicates in returned author/user list by using user object instead of user id
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Tue, 09 Aug 2011 14:29:10 +0100
parents 513646585e45
children
line wrap: on
line source
class AddTypeToEnumerations < ActiveRecord::Migration
  def self.up
    add_column :enumerations, :type, :string
  end

  def self.down
    remove_column :enumerations, :type
  end
end