<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,6 +1,6 @@
 class InitializeDb &lt; ActiveRecord::Migration
   def self.up
-    create_table &quot;comments&quot;, :force =&gt; true do |t|
+    create_table &quot;comments&quot; do |t|
       t.integer  &quot;post_id&quot;,                 :null =&gt; false
       t.string   &quot;author&quot;,                  :null =&gt; false
       t.string   &quot;author_url&quot;,              :null =&gt; false
@@ -15,7 +15,7 @@ class InitializeDb &lt; ActiveRecord::Migration
     add_index &quot;comments&quot;, [&quot;post_id&quot;], :name =&gt; &quot;index_comments_on_post_id&quot;
     add_index &quot;comments&quot;, [&quot;created_at&quot;], :name =&gt; &quot;index_comments_on_created_at&quot;
 
-    create_table &quot;open_id_authentication_associations&quot;, :force =&gt; true do |t|
+    create_table &quot;open_id_authentication_associations&quot; do |t|
       t.integer &quot;issued&quot;
       t.integer &quot;lifetime&quot;
       t.string  &quot;handle&quot;
@@ -24,13 +24,13 @@ class InitializeDb &lt; ActiveRecord::Migration
       t.binary  &quot;secret&quot;
     end
 
-    create_table &quot;open_id_authentication_nonces&quot;, :force =&gt; true do |t|
+    create_table &quot;open_id_authentication_nonces&quot; do |t|
       t.integer &quot;timestamp&quot;,  :null =&gt; false
       t.string  &quot;server_url&quot;
       t.string  &quot;salt&quot;,       :null =&gt; false
     end
 
-    create_table &quot;pages&quot;, :force =&gt; true do |t|
+    create_table &quot;pages&quot; do |t|
       t.string   &quot;title&quot;,      :null =&gt; false
       t.string   &quot;slug&quot;,       :null =&gt; false
       t.text     &quot;body&quot;,       :null =&gt; false
@@ -42,7 +42,7 @@ class InitializeDb &lt; ActiveRecord::Migration
     add_index &quot;pages&quot;, [&quot;title&quot;], :name =&gt; &quot;index_pages_on_title&quot;
     add_index &quot;pages&quot;, [&quot;created_at&quot;], :name =&gt; &quot;index_pages_on_created_at&quot;
 
-    create_table &quot;posts&quot;, :force =&gt; true do |t|
+    create_table &quot;posts&quot; do |t|
       t.string   &quot;title&quot;,                                                      :null =&gt; false
       t.string   &quot;slug&quot;,                                                       :null =&gt; false
       t.text     &quot;body&quot;,                                                       :null =&gt; false
@@ -58,7 +58,7 @@ class InitializeDb &lt; ActiveRecord::Migration
 
     add_index &quot;posts&quot;, [&quot;published_at&quot;], :name =&gt; &quot;index_posts_on_published_at&quot;
 
-    create_table &quot;sessions&quot;, :force =&gt; true do |t|
+    create_table &quot;sessions&quot; do |t|
       t.string   &quot;session_id&quot;, :null =&gt; false
       t.text     &quot;data&quot;
       t.datetime &quot;created_at&quot;
@@ -68,7 +68,7 @@ class InitializeDb &lt; ActiveRecord::Migration
     add_index &quot;sessions&quot;, [&quot;updated_at&quot;], :name =&gt; &quot;index_sessions_on_updated_at&quot;
     add_index &quot;sessions&quot;, [&quot;session_id&quot;], :name =&gt; &quot;index_sessions_on_session_id&quot;
 
-    create_table &quot;taggings&quot;, :force =&gt; true do |t|
+    create_table &quot;taggings&quot; do |t|
       t.integer  &quot;tag_id&quot;
       t.integer  &quot;taggable_id&quot;
       t.datetime &quot;created_at&quot;
@@ -77,14 +77,14 @@ class InitializeDb &lt; ActiveRecord::Migration
     add_index &quot;taggings&quot;, [&quot;taggable_id&quot;], :name =&gt; &quot;index_taggings_on_taggable_id_and_taggable_type&quot;
     add_index &quot;taggings&quot;, [&quot;tag_id&quot;], :name =&gt; &quot;index_taggings_on_tag_id&quot;
 
-    create_table &quot;tags&quot;, :force =&gt; true do |t|
+    create_table &quot;tags&quot; do |t|
       t.string  &quot;name&quot;
       t.integer &quot;taggings_count&quot;, :default =&gt; 0, :null =&gt; false
     end
 
     add_index &quot;tags&quot;, [&quot;name&quot;], :name =&gt; &quot;index_tags_on_name&quot;
 
-    create_table &quot;undo_items&quot;, :force =&gt; true do |t|
+    create_table &quot;undo_items&quot; do |t|
       t.string   &quot;type&quot;,       :null =&gt; false
       t.datetime &quot;created_at&quot;, :null =&gt; false
       t.text     &quot;data&quot;</diff>
      <filename>db/migrate/009_initialize_db.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>6ffdd96d52a39c15cc312669d5307d120596c69b</id>
    </parent>
  </parents>
  <author>
    <name>Xavier Shay</name>
    <email>xavier@rhnh.net</email>
  </author>
  <url>http://github.com/zachinglis/enki/commit/37770353d077c1d0f601621fc21a47c524f21686</url>
  <id>37770353d077c1d0f601621fc21a47c524f21686</id>
  <committed-date>2008-09-18T19:33:37-07:00</committed-date>
  <authored-date>2008-09-18T19:33:37-07:00</authored-date>
  <message>Remove :force =&gt; true from the collapsed migration, so as to not clobber any existing tables</message>
  <tree>c2b0c99b1d6bd70e48e275ab17d36b1251b03ff1</tree>
  <committer>
    <name>Xavier Shay</name>
    <email>xavier@rhnh.net</email>
  </committer>
</commit>
