115595167-matching_column_name_changed

This commit is contained in:
Stas 2016-04-14 17:22:18 +03:00
parent 00391d3582
commit 9ace5aafb1
2 changed files with 2 additions and 2 deletions

View file

@ -56,7 +56,7 @@ class ApplicationController < ActionController::Base
end end
def info_for_paper_trail def info_for_paper_trail
{ svTRID: request.svTRID } { uuid: request.uuid }
end end
def user_for_paper_trail def user_for_paper_trail

View file

@ -4,7 +4,7 @@ class AddMatchingColumn < ActiveRecord::Migration
tables = [:log_domains, :log_contacts] tables = [:log_domains, :log_contacts]
tables.each do |table| tables.each do |table|
add_column table, :svTRID, :text add_column table, :uuid, :text
end end
end end