aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20110803223526_add_cached_slugs.rb
diff options
context:
space:
mode:
authorPhilip Arndt <parndt@gmail.com>2011-11-09 22:19:07 +1300
committerPhilip Arndt <parndt@gmail.com>2011-11-09 22:19:07 +1300
commit36c005ecd112b76d3c9c2d7092f22d6e06755d73 (patch)
tree23e37055e6c6aa79a9c5285387052acdc708ba30 /db/migrate/20110803223526_add_cached_slugs.rb
parentd18364d359359fa6564ad187d7303f8c167154cd (diff)
downloadrefinerycms-blog-36c005ecd112b76d3c9c2d7092f22d6e06755d73.tar.gz
refinerycms-blog-36c005ecd112b76d3c9c2d7092f22d6e06755d73.tar.bz2
refinerycms-blog-36c005ecd112b76d3c9c2d7092f22d6e06755d73.zip
Refactored everything (models, helpers) into proper namespace of Refinery::Blog. Requires refinery commit 25162b585b9c4023d39fd1a9796140bfa4ecb909
Diffstat (limited to 'db/migrate/20110803223526_add_cached_slugs.rb')
-rw-r--r--db/migrate/20110803223526_add_cached_slugs.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/db/migrate/20110803223526_add_cached_slugs.rb b/db/migrate/20110803223526_add_cached_slugs.rb
index 9e39586..1024323 100644
--- a/db/migrate/20110803223526_add_cached_slugs.rb
+++ b/db/migrate/20110803223526_add_cached_slugs.rb
@@ -1,6 +1,6 @@
class AddCachedSlugs < ActiveRecord::Migration
def change
- add_column Refinery::BlogCategory.table_name, :cached_slug, :string
- add_column Refinery::BlogPost.table_name, :cached_slug, :string
+ add_column Refinery::Blog::Category.table_name, :cached_slug, :string
+ add_column Refinery::Blog::Post.table_name, :cached_slug, :string
end
end