summaryrefslogtreecommitdiffstats
path: root/db/migrate/065_add_settings_updated_on.rb
blob: ab0b03a15d1b7c3661b29f7cfc50bee174ad2c61 (plain)
1
2
3
4
5
6
7
8
9
10
11
class AddSettingsUpdatedOn < ActiveRecord::Migration[4.2]
  def self.up
    add_column :settings, :updated_on, :timestamp
    # set updated_on
    Setting.all.each(&:save)
  end

  def self.down
    remove_column :settings, :updated_on
  end
end