This commit is contained in:
2026-07-27 15:26:17 -05:00
parent 32c8ccc3ed
commit 6cb13650ed
16 changed files with 1924 additions and 148 deletions

View File

@@ -0,0 +1,10 @@
-- BizMatch Phase 2 — module 5
-- One-time reset of buyer.interested_in_updates.
--
-- Every existing row got its `false` from the DEFAULT that 002 shipped with,
-- i.e. before 003 made the column tri-state. Under the new semantics that
-- `false` reads as "explicitly said no", which nobody ever recorded. All rows
-- predate the tri-state semantics and the table holds test data only, so the
-- honest value for every one of them is NULL = "not answered".
UPDATE buyer SET interested_in_updates = NULL;