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
An upgrade changed a column from integer to text.
The corresponding downgrade SQL was something like:
ALTER TABLE mytable ALTER COLUMN mycol TYPE integer;
In Postgres, tt should be:
ALTER TABLE mytable ALTER COLUMN mycol TYPE integer USING (my_col::integer);
Is this an SQL::Translator issue or a DBICDH issue?
The text was updated successfully, but these errors were encountered:
Yeah that's a SQL::Translator issue, sorry!
Sorry, something went wrong.
Reported in SQLT at https://rt.cpan.org/Ticket/Display.html?id=101704
No branches or pull requests
An upgrade changed a column from integer to text.
The corresponding downgrade SQL was something like:
In Postgres, tt should be:
Is this an SQL::Translator issue or a DBICDH issue?
The text was updated successfully, but these errors were encountered: