tracks/db/migrate/20110104200112_add_locale_to_preference.rb
Marcus Ilgner 338d4bb5a6 Added locale selection to preferences
Mostly completed transition to full i18n
Incorporated german translations by Ulf Klose <ulf.klose@gmail.com>
2011-01-16 18:14:07 +01:00

9 lines
187 B
Ruby

class AddLocaleToPreference < ActiveRecord::Migration
def self.up
add_column :preferences, :locale, :string
end
def self.down
remove_column :preferences, :locale
end
end