tags の論理削除対応(#287) (#288)

#287

#287

Co-authored-by: miteruzo <miteruzo@naver.com>
Reviewed-on: #288
This commit was merged in pull request #288.
This commit is contained in:
2026-03-11 22:55:57 +09:00
parent 238d236b2b
commit 176519b929
4 changed files with 68 additions and 31 deletions
@@ -0,0 +1,6 @@
class AddDiscardedAtToTags < ActiveRecord::Migration[8.0]
def change
add_column :tags, :discarded_at, :datetime
add_index :tags, :discarded_at
end
end