mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-18 16:20:12 +01:00
Mostly completed transition to full i18n Incorporated german translations by Ulf Klose <ulf.klose@gmail.com>
9 lines
187 B
Ruby
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
|