From 158401e17d8e79e0334cd3849165c903029cec79 Mon Sep 17 00:00:00 2001
From: Raphael Sofaer <raphael@joindiaspora.com>
Date: Wed, 1 Jun 2011 12:02:14 -0700
Subject: [PATCH] ActiveRecord::Base.record_timestamps didn't actually stop
 timestamps from being updated

---
 ...20110527135552_photo_status_message_association_on_guid.rb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/db/migrate/20110527135552_photo_status_message_association_on_guid.rb b/db/migrate/20110527135552_photo_status_message_association_on_guid.rb
index 19f7105e32..a48759d71b 100644
--- a/db/migrate/20110527135552_photo_status_message_association_on_guid.rb
+++ b/db/migrate/20110527135552_photo_status_message_association_on_guid.rb
@@ -7,7 +7,7 @@ class PhotoStatusMessageAssociationOnGuid < ActiveRecord::Migration
   def self.up
     add_column :posts, :status_message_guid, :string
 
-    ActiveRecord::Base.record_timestamps = false
+    Post.record_timestamps = false
     photos = Post.where(Post.arel_table[:status_message_id].not_eq(nil).and(Post.arel_table[:type].eq('Photo')))
     photos.each do |photo|
       if Post.where(:id => photo.status_message_id).exists?
@@ -27,7 +27,7 @@ class PhotoStatusMessageAssociationOnGuid < ActiveRecord::Migration
   def self.down
     add_column :posts, :status_message_id, :integer
 
-    ActiveRecord::Base.record_timestamps = false
+    Post.record_timestamps = false
     photos = Post.where(Post.arel_table[:status_message_guid].not_eq(nil).and(Post.arel_table[:type].eq('Photo')))
     photos.each do |photo|
       if Post.where(:guid => photo.status_message_guid).exists?
-- 
GitLab