aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/5_add_cached_slugs.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/5_add_cached_slugs.rb')
-rw-r--r--db/migrate/5_add_cached_slugs.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/db/migrate/5_add_cached_slugs.rb b/db/migrate/5_add_cached_slugs.rb
deleted file mode 100644
index c189302..0000000
--- a/db/migrate/5_add_cached_slugs.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-class AddCachedSlugs < ActiveRecord::Migration
- def self.up
- add_column :blog_categories, :cached_slug, :string
- add_column :blog_posts, :cached_slug, :string
- end
-
- def self.down
- remove_column :blog_categories, :cached_slug
- remove_column :blog_posts, :cached_slug
- end
-end