このコミットが含まれているのは:
2025-12-10 12:46:40 +09:00
コミット 575d63dcba
4個のファイルの変更13行の追加3行の削除
+7
ファイルの表示
@@ -0,0 +1,7 @@
class AddUniqueIndexToTagImplications < ActiveRecord::Migration[8.0]
def change
add_index :tag_implications, [:tag_id, :parent_tag_id],
unique: true,
name: 'index_tag_implications_on_tag_id_and_parent_tag_id'
end
end