blob: 389f83e1614422203802221ff8850111945da446 (
plain) (
blame)
1
2
3
4
5
6
|
class AddCachedSlugs < ActiveRecord::Migration
def change
add_column :refinery_blog_categories, :cached_slug, :string
add_column :refinery_blog_posts, :cached_slug, :string
end
end
|