Merge branch 'master' into openid

Conflicts:
	app/controllers/user_controller.rb
	app/views/user/new.html.erb
	config/locales/en.yml
	public/stylesheets/common.css
This commit is contained in:
Tom Hughes 2010-05-11 21:22:43 +01:00
commit 64f373dc59
17 changed files with 282 additions and 69 deletions

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