You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Having the same issue with the TRIGGER check. Any ideas on when this may land? Is feature/handle-case usable? Unfortunately my go-fu is not great, but if you need any testers or anything, happy to help! And thanks for the great library.
After running the generated upgrade script we get this error when trying to delete records from a parent table. (cascading deletes to its children)
The problem is the change script is generating these bad triggers.
CREATE CONSTRAINT TRIGGER "RI_ConstraintTrigger_c_16652"
That looks to be a method of creating foreign key cascading which no longer works.
Add this to "trigger.go" in func initTriggerSqlTemplate()
and t.tgname not like 'RI_ConstraintTrigger%'
To support older versions of postgresql it could be a parameter passed in to exclude them.
The text was updated successfully, but these errors were encountered: