<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -33,7 +33,7 @@ Background
 
 MigrationConcordance works by taking a snapshot of the state of an appliation's migrations every
 time you run &quot;rake db:migrate&quot;. It creates a file in db/migration_snapshot.yml that holds a list
-of all current migrations and their SHA-1 hashes. Therefore, if you migrate to a migration that is
+of all current migrations and their MD5 hashes. Therefore, if you migrate to a migration that is
 not the latest (using rake db:migrate VERSION=&lt;version&gt;), you won't get any more notifications
 even if you aren't on the latest version. It assumes you know what you are doing and won't keep
 nagging you to migrate after you've migrated somewhere already.</diff>
      <filename>README</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,4 @@
+require 'digest/md5'
 module ActiveRecord
   class Migrator
     class &lt;&lt; self
@@ -43,7 +44,7 @@ module ActiveRecord
         files = Dir[File.join(migrations_path, &quot;[0-9]*_*.rb&quot;)].collect { |n| File.basename(n) }
         snapshot = {}
         files.each do |file|
-          snapshot[File.basename(file, &quot;.rb&quot;)] = Digest::SHA1.hexdigest(File.read(File.join(migrations_path, file)))
+          snapshot[File.basename(file, &quot;.rb&quot;)] = Digest::MD5.hexdigest(File.read(File.join(migrations_path, file)))
         end
         snapshot
       end</diff>
      <filename>lib/migration_concordance.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>4879fff861beb43490fb43ba918fde3ef7f9a7ff</id>
    </parent>
  </parents>
  <author>
    <name>Josh Susser</name>
    <email>josh@hasmanythrough.com</email>
  </author>
  <url>http://github.com/joshsusser/migration_concordance/commit/23f4933a41187cea5319a6f3f08e638c006804b6</url>
  <id>23f4933a41187cea5319a6f3f08e638c006804b6</id>
  <committed-date>2008-03-02T14:31:58-08:00</committed-date>
  <authored-date>2008-03-02T14:31:58-08:00</authored-date>
  <message>changed to using MD5 hash algorithm</message>
  <tree>d0114c4da3d318f89b850e24eee04d8de3a4cf80</tree>
  <committer>
    <name>Josh Susser</name>
    <email>josh@hasmanythrough.com</email>
  </committer>
</commit>
