Closed amakmurr closed 5 months ago
Hi @andreynering , I am just updating this PR and apply your suggestion. Also has been run the unit test for mysql in my local machine and it's works now. Please kindly take another look.
Thank you.
Thanks @amakmurr!
I did some very simple improvements at b6a9478065da83965563b1196a1889b6b6dabf61.
Add
OVERRIDING SYSTEM VALUE
insert clause when using PostgreSQL with version >= 10 dialect. It's necessary for table with always generated identity column also as primary key. By default those column must be always generated by PostgreSQL, but in this fixtures mostly case we want to define ourselfid
especially when declaring the relationship between fixtures.This PR will allow you to force define value for column that has been made with such as statement
id BIGSERIAL GENERATED ALWAYS AS IDENTITY PRIMARY KEY
Reference: