view db/migrate/20090704172358_add_member_roles_inherited_from.rb @ 1434:a9cfc6dcfb83 biblio_alt_search_auth

Addresses Bug #764. Removes unused controller instanced variable.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Wed, 09 Oct 2013 19:17:22 +0100
parents 513646585e45
children
line wrap: on
line source
class AddMemberRolesInheritedFrom < ActiveRecord::Migration
  def self.up
    add_column :member_roles, :inherited_from, :integer
  end

  def self.down
    remove_column :member_roles, :inherited_from
  end
end