To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / db / migrate / 079_add_user_preferences_time_zone.rb @ 443:350acce374a2

History | View | Annotate | Download (208 Bytes)

1
class AddUserPreferencesTimeZone < ActiveRecord::Migration
2
  def self.up
3
    add_column :user_preferences, :time_zone, :string
4
  end
5

    
6
  def self.down
7
    remove_column :user_preferences, :time_zone
8
  end
9
end