aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20130611193510_add_access_count_to_posts.refinery_blog.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20130611193510_add_access_count_to_posts.refinery_blog.rb')
-rw-r--r--db/migrate/20130611193510_add_access_count_to_posts.refinery_blog.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/db/migrate/20130611193510_add_access_count_to_posts.refinery_blog.rb b/db/migrate/20130611193510_add_access_count_to_posts.refinery_blog.rb
new file mode 100644
index 0000000..76ad624
--- /dev/null
+++ b/db/migrate/20130611193510_add_access_count_to_posts.refinery_blog.rb
@@ -0,0 +1,9 @@
+# This migration comes from refinery_blog (originally 20120223022021)
+class AddAccessCountToPosts < ActiveRecord::Migration
+ def change
+ add_column Refinery::Blog::Post.table_name, :access_count, :integer, :default => 0
+
+ add_index Refinery::Blog::Post.table_name, :access_count
+
+ end
+end \ No newline at end of file