This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Schema management; how do you manage "n" database schemas being managed? | |
Production Example | |
------------------ | |
UPDATE project_affiliation pa | |
SET hasCommented = 1 | |
WHERE ISNULL(pa.endedAt) | |
AND hasCommented <> 1 | |
AND EXISTS ( | |
SELECT 1 |