Seed data should not be loaded mid migration

Column information is not totally generated and seed will be done at end of migration run
This commit is contained in:
Jamie Winsor 2011-10-27 18:22:39 -07:00
parent 5a958007c5
commit 2b73c292c8

View file

@ -36,8 +36,6 @@ class CreateBlogStructure < ActiveRecord::Migration
end end
add_index Refinery::Categorization.table_name, [:blog_category_id, :blog_post_id], :name => 'index_blog_categories_blog_posts_on_bc_and_bp' add_index Refinery::Categorization.table_name, [:blog_category_id, :blog_post_id], :name => 'index_blog_categories_blog_posts_on_bc_and_bp'
load(File.expand_path('../../seeds/refinerycms_blog.rb', __FILE__))
end end
def down def down