projects
/
rails.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Internationalise the trace controller. Fixes #1894.
[rails.git]
/
db
/
migrate
/
032_add_user_locale.rb
1
class AddUserLocale < ActiveRecord::Migration
2
def self.up
3
add_column "users", "locale", :string
4
end
5
6
def self.down
7
remove_column "users", "locale"
8
end
9
end