This commit is contained in:
2025-06-30 23:31:39 +09:00
parent 068d0aed14
commit e20f7fcc17
13 changed files with 140 additions and 75 deletions
@@ -0,0 +1,5 @@
class AddPostsCountToTags < ActiveRecord::Migration[8.0]
def change
add_column :tags, :post_count, :integer, null: false, default: 0
end
end