<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -63,6 +63,21 @@ One of the child models:
     # nothing
   end
 
+For your parent and child models, you don't need any special fields in your migration. For the join model (GuestsKennel), use a migration like so:
+
+  class CreateGuestsKennels &lt; ActiveRecord::Migration
+    def self.up
+      create_table :guests_kennels do |t|
+        t.references :guest, :polymorphic =&gt; true
+        t.references :kennel
+      end
+    end
+  
+    def self.down
+      drop_table :guests_kennels
+    end
+  end
+
 See ActiveRecord::Associations::PolymorphicClassMethods for more configuration options.
 
 == Helper methods example
@@ -113,6 +128,21 @@ Now, dogs and cats can eat birds and cats. Birds can't eat anything (they aren't
 
 In this case, each guest/eaten relationship is called a Devouring.
 
+In your migration, you need to declare both sides as polymorphic:
+
+  class CreateDevourings &lt; ActiveRecord::Migration
+    def self.up
+      create_table :devourings do |t|
+        t.references :guest, :polymorphic =&gt; true
+        t.references :eaten, :polymorphic =&gt; true
+      end
+    end
+  
+    def self.down
+      drop_table :devourings
+    end
+  end
+
 See ActiveRecord::Associations::PolymorphicClassMethods for more.
 
 == Tagging generator</diff>
      <filename>README</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,2 @@
 
-* Does :namespace key definitely work with doubles?
-* Migration examples in docs
-* Controller for tagging generator
 * Tag cloud method</diff>
      <filename>TODO</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>0d04e56f9a8460607c0d438d75e13031ce03fa0a</id>
    </parent>
  </parents>
  <author>
    <name>Evan Weaver</name>
    <email>evan@cloudbur.st</email>
  </author>
  <url>http://github.com/fauna/has_many_polymorphs/commit/e4a2cc75961ffc32190e9a774968d3b182e3e59c</url>
  <id>e4a2cc75961ffc32190e9a774968d3b182e3e59c</id>
  <committed-date>2008-01-15T16:29:54-08:00</committed-date>
  <authored-date>2008-01-15T16:29:54-08:00</authored-date>
  <message>migration examples, finally!</message>
  <tree>f8474ea9951c8d7cb30a5e1164892fd2084f177d</tree>
  <committer>
    <name>Evan Weaver</name>
    <email>evan@cloudbur.st</email>
  </committer>
</commit>
