6bdc13b33d
Once the values are cached, only one database query is done at each user request (to check if the cache is still valid). git-svn-id: http://redmine.rubyforge.org/svn/trunk@685 e93f8b46-1217-0410-a6f0-8f06a7374b81
12 lines
248 B
Ruby
12 lines
248 B
Ruby
class AddSettingsUpdatedOn < ActiveRecord::Migration
|
|
def self.up
|
|
add_column :settings, :updated_on, :timestamp
|
|
# set updated_on
|
|
Setting.find(:all).each(&:save)
|
|
end
|
|
|
|
def self.down
|
|
remove_column :settings, :updated_on
|
|
end
|
|
end
|