<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,21 +1,25 @@
 class CreateVersionedEvents &lt; ActiveRecord::Migration
+  # NOTE: This migration's contents have been commented-out because they relied
+  # on the old +acts_as_versioned+ plugin that has since replaced with the
+  # +papertrail+ plugin.
+
   def self.up
-    Event.create_versioned_table do |t|
-      t.string   &quot;title&quot;
-      t.text     &quot;description&quot;
-      t.datetime &quot;start_time&quot;
-      t.string   &quot;url&quot;
-      t.datetime &quot;created_at&quot;
-      t.datetime &quot;updated_at&quot;
-      t.integer  &quot;venue_id&quot;
-      t.integer  &quot;source_id&quot;
-      t.integer  &quot;duplicate_of_id&quot;
-      t.datetime &quot;end_time&quot;
-      t.integer  &quot;version&quot;
-    end
+###     Event.create_versioned_table do |t|
+###       t.string   &quot;title&quot;
+###       t.text     &quot;description&quot;
+###       t.datetime &quot;start_time&quot;
+###       t.string   &quot;url&quot;
+###       t.datetime &quot;created_at&quot;
+###       t.datetime &quot;updated_at&quot;
+###       t.integer  &quot;venue_id&quot;
+###       t.integer  &quot;source_id&quot;
+###       t.integer  &quot;duplicate_of_id&quot;
+###       t.datetime &quot;end_time&quot;
+###       t.integer  &quot;version&quot;
+###     end
   end
 
   def self.down
-    Event.drop_versioned_table
+###     Event.drop_versioned_table
   end
 end</diff>
      <filename>db/migrate/20081011181519_create_versioned_events.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,28 +1,32 @@
 class CreateVersionedVenues &lt; ActiveRecord::Migration
+  # NOTE: This migration's contents have been commented-out because they relied
+  # on the old +acts_as_versioned+ plugin that we've since replaced with the
+  # +papertrail+ plugin.
+  #
   def self.up
-    Venue.create_versioned_table do |t|
-      t.string   &quot;title&quot;
-      t.text     &quot;description&quot;
-      t.string   &quot;address&quot;
-      t.string   &quot;url&quot;
-      t.datetime &quot;created_at&quot;
-      t.datetime &quot;updated_at&quot;
-      t.string   &quot;street_address&quot;
-      t.string   &quot;locality&quot;
-      t.string   &quot;region&quot;
-      t.string   &quot;postal_code&quot;
-      t.string   &quot;country&quot;
-      t.decimal  &quot;latitude&quot;
-      t.decimal  &quot;longitude&quot;
-      t.string   &quot;email&quot;
-      t.string   &quot;telephone&quot;
-      t.integer  &quot;source_id&quot;
-      t.integer  &quot;duplicate_of_id&quot;
-      t.integer  &quot;version&quot;
-    end
+###     Venue.create_versioned_table do |t|
+###       t.string   &quot;title&quot;
+###       t.text     &quot;description&quot;
+###       t.string   &quot;address&quot;
+###       t.string   &quot;url&quot;
+###       t.datetime &quot;created_at&quot;
+###       t.datetime &quot;updated_at&quot;
+###       t.string   &quot;street_address&quot;
+###       t.string   &quot;locality&quot;
+###       t.string   &quot;region&quot;
+###       t.string   &quot;postal_code&quot;
+###       t.string   &quot;country&quot;
+###       t.decimal  &quot;latitude&quot;
+###       t.decimal  &quot;longitude&quot;
+###       t.string   &quot;email&quot;
+###       t.string   &quot;telephone&quot;
+###       t.integer  &quot;source_id&quot;
+###       t.integer  &quot;duplicate_of_id&quot;
+###       t.integer  &quot;version&quot;
+###     end
   end
 
   def self.down
-    Venue.drop_versioned_table
+###     Venue.drop_versioned_table
   end
 end</diff>
      <filename>db/migrate/20081011193124_create_versioned_venues.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,11 +1,15 @@
 class AddRruleToEvents &lt; ActiveRecord::Migration
+  # NOTE: Some of this migration's contents have been commented-out because
+  # they used tables created for the old +acts_as_versioned+ plugin that has
+  # since replaced with the +papertrail+ plugin.
+
   def self.up
     add_column :events, :rrule, :string
-    add_column :event_versions, :rrule, :string 
+###     add_column :event_versions, :rrule, :string 
   end
 
   def self.down
     remove_column :events, :rrule
-    remove_column :event_versions, :rrule
+###     remove_column :event_versions, :rrule
   end
 end</diff>
      <filename>db/migrate/20081115190515_add_rrule_to_events.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>8ac8588065c887602035174a5146d7d4df45cf19</id>
    </parent>
  </parents>
  <author>
    <name>Igal Koshevoy</name>
    <email>igal@pragmaticraft.com</email>
  </author>
  <url>http://github.com/calagator/calagator/commit/381bb4e73e5a69bda69f7d1122037702a67ecc4f</url>
  <id>381bb4e73e5a69bda69f7d1122037702a67ecc4f</id>
  <committed-date>2009-09-27T17:17:03-07:00</committed-date>
  <authored-date>2009-09-27T17:17:03-07:00</authored-date>
  <message>Updated migrations that referenced the old acts_as_versioned database tables.</message>
  <tree>714df8b8878c1416f833d73419a5c38cb8cccd7f</tree>
  <committer>
    <name>Igal Koshevoy</name>
    <email>igal@pragmaticraft.com</email>
  </committer>
</commit>
