fix: anvil_transfer_pricing upsert 시 updated_at 갱신

ON CONFLICT 절에 updated_at = CURRENT_TIMESTAMP 추가

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
kappa
2026-01-26 01:39:40 +09:00
parent 548f77f6df
commit 4b793eaeef

View File

@@ -58,7 +58,8 @@ export class AnvilTransferPricingRepository extends BaseRepository<AnvilTransfer
) VALUES (?, ?)
ON CONFLICT(anvil_region_id)
DO UPDATE SET
price_per_gb = excluded.price_per_gb`
price_per_gb = excluded.price_per_gb,
updated_at = CURRENT_TIMESTAMP`
).bind(
price.anvil_region_id,
price.price_per_gb