seo meta table migration removed

We should not generate the seo meta table here - it is handled by refinerycms if the user wants it
This commit is contained in:
Jamie Winsor 2011-10-28 13:05:32 -07:00
parent be06f1658d
commit b1baeba3d2

View file

@ -1,25 +0,0 @@
class CreateSeoMetaForBlog < ActiveRecord::Migration
def up
unless ::SeoMetum.table_exists?
create_table ::SeoMetum.table_name do |t|
t.integer :seo_meta_id
t.string :seo_meta_type
t.string :browser_title
t.string :meta_keywords
t.text :meta_description
t.timestamps
end
add_index ::SeoMetum.table_name, :id
add_index ::SeoMetum.table_name, [:seo_meta_id, :seo_meta_type]
end
end
def down
# can't drop the table because someone else might be using it.
end
end