We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Duplicate sequences are created e.g. classifiertype_classifiertypepk_seq and classifiertype_classifiertypepk_seq1.
classifiertype_classifiertypepk_seq
classifiertype_classifiertypepk_seq1
This is because there is SQL to explicitly (CREATE SEQUENCE ..) and implicitly (colname SERIAL) create the sequences in https://github.com/ONSdigital/rm-survey-service/blob/master/db-migrations/1_create_schema.up.sql
CREATE SEQUENCE ..
colname SERIAL
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Duplicate sequences are created e.g.
classifiertype_classifiertypepk_seq
andclassifiertype_classifiertypepk_seq1
.This is because there is SQL to explicitly (
CREATE SEQUENCE ..
) and implicitly (colname SERIAL
) create the sequences in https://github.com/ONSdigital/rm-survey-service/blob/master/db-migrations/1_create_schema.up.sqlThe text was updated successfully, but these errors were encountered: