aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20130611193505_add_cached_slugs.refinery_blog.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20130611193505_add_cached_slugs.refinery_blog.rb')
-rw-r--r--db/migrate/20130611193505_add_cached_slugs.refinery_blog.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/db/migrate/20130611193505_add_cached_slugs.refinery_blog.rb b/db/migrate/20130611193505_add_cached_slugs.refinery_blog.rb
new file mode 100644
index 0000000..64a4c78
--- /dev/null
+++ b/db/migrate/20130611193505_add_cached_slugs.refinery_blog.rb
@@ -0,0 +1,7 @@
+# This migration comes from refinery_blog (originally 20110803223526)
+class AddCachedSlugs < ActiveRecord::Migration
+ def change
+ add_column Refinery::Blog::Category.table_name, :cached_slug, :string
+ add_column Refinery::Blog::Post.table_name, :cached_slug, :string
+ end
+end