- 🇳🇱Netherlands daffieI am marking this issue as outdated as the patch from comment #5 does not fail. 
PostgreSQL's Schema::addField() does not properly detect when a field is part of a newly added primary key, so that it does not calculate T $fixnull variable correctly.
This is because a $keys_new variable is inspected but the variable is actually called $new_keys.
Because the variable is actually specified as $keys_new by the interface, rewrite usages of $new_keys to $keys_new instead of the other way around.
This will probably require #2974722: Fix dropping of columns in a composite primary key on MariaDB >=10.2.8 and make it consistent across database drivers → for test coverage.
Closed: outdated
10.1 ✨
The change is currently missing an automated test that fails when run with the original code, and succeeds when the bug has been fixed.
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
I am marking this issue as outdated as the patch from comment #5 does not fail.