Merge branch 'master' into openid

Conflicts:
	app/controllers/user_controller.rb
This commit is contained in:
Tom Hughes 2010-12-05 15:15:55 +00:00
commit 0ea9f92be5
376 changed files with 9128 additions and 231 deletions

View file

@ -0,0 +1,9 @@
class AddEditorPreferenceToUser < ActiveRecord::Migration
def self.up
add_column :users, :preferred_editor, :string
end
def self.down
remove_column :users, :preferred_editor
end
end