Added site locales

This commit is contained in:
magnolia-fan
2011-06-30 09:12:52 +04:00
parent 124e9e481e
commit 13a233ac72
26 changed files with 406 additions and 112 deletions
@@ -0,0 +1,9 @@
class AddLangToUser < ActiveRecord::Migration
def self.up
add_column :users, :lang, :string
end
def self.down
remove_column :users, :lang
end
end