annotate db/migrate/.svn/text-base/20090704172358_add_member_roles_inherited_from.rb.svn-base @ 591:9e866f13c984 feature_36

Author Autocomplete: Changes in the User/Authorship selection mechanism. Separated the search box from the name field.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Fri, 12 Aug 2011 16:21:35 +0100
parents 513646585e45
children
rev   line source
Chris@0 1 class AddMemberRolesInheritedFrom < ActiveRecord::Migration
Chris@0 2 def self.up
Chris@0 3 add_column :member_roles, :inherited_from, :integer
Chris@0 4 end
Chris@0 5
Chris@0 6 def self.down
Chris@0 7 remove_column :member_roles, :inherited_from
Chris@0 8 end
Chris@0 9 end