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
Describe the bug When I try to import an SQL script generated by drawDB itself that has an auto-increment field, the following error is returned:
Apparently it has to do with the PR #255
To Reproduce try to import this sql script that was generated by drawDB itself:
CREATE TABLE "test" ( "id" INTEGER NOT NULL UNIQUE GENERATED BY DEFAULT AS IDENTITY, PRIMARY KEY("id") );
The text was updated successfully, but these errors were encountered:
#255 deals with exports. The parser fails on 'generated'. I'll report it if I haven't already
Sorry, something went wrong.
No branches or pull requests
Describe the bug
When I try to import an SQL script generated by drawDB itself that has an auto-increment field, the following error is returned:
Apparently it has to do with the PR #255
To Reproduce
try to import this sql script that was generated by drawDB itself:
The text was updated successfully, but these errors were encountered: