##// END OF EJS Templates
More unit tests for the plugins. Fixed bug where a plugin's hook method could return nil.
More unit tests for the plugins. Fixed bug where a plugin's hook method could return nil.

File last commit:

r904:deb182337d14
r1706:ca8fb4026e0e
Show More
079_add_user_preferences_time_zone.rb
9 lines | 208 B | text/x-ruby | RubyLexer
/ db / migrate / 079_add_user_preferences_time_zone.rb
class AddUserPreferencesTimeZone < ActiveRecord::Migration
def self.up
add_column :user_preferences, :time_zone, :string
end
def self.down
remove_column :user_preferences, :time_zone
end
end