Add check for Sub.replyCost > 0

This commit is contained in:
ekzyis 2025-03-12 17:42:44 -05:00
parent 2038701ecf
commit a9943981fd

View File

@ -0,0 +1,2 @@
-- Add constraint to ensure replyCost is positive
ALTER TABLE "Sub" ADD CONSTRAINT "Sub_replyCost_positive" CHECK ("replyCost" > 0);