Renumber migration to avoid conflict with master

This commit is contained in:
Tom Hughes 2010-05-11 19:06:30 +01:00
parent 61e51f88cc
commit 89ec02ea0a

View file

@ -0,0 +1,11 @@
class AddContributorTermsToUser < ActiveRecord::Migration
def self.up
add_column :users, :terms_agreed, :datetime
add_column :users, :consider_pd, :boolean, :null => false, :default => false
end
def self.down
remove_column :users, :consider_pd
remove_column :users, :terms_agreed
end
end