Added fifth tag category meta

This commit is contained in:
BrokenEagle
2017-11-06 15:03:45 -08:00
parent 1de8fd2bd6
commit 7cb45fc8d3
5 changed files with 32 additions and 3 deletions

View File

@@ -0,0 +1,7 @@
class AddTagCountMetaToPosts < ActiveRecord::Migration
def change
Post.without_timeout do
add_column :posts, :tag_count_meta, :integer, default: 0, null: false
end
end
end