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
Hello
how do i create a migration with an integer field auto_incremental ? This field won't be the id or key.
The text was updated successfully, but these errors were encountered:
I think you might want to have a look at this https://www.geeksforgeeks.org/sql-sequences/
Sorry, something went wrong.
There could be several approaches to achieve it.
sql()
custom
constraint
t.Column("my_col", "int", {"custom": "GENERATED ALWAYS AS IDENTITY"})
auto_increment
I would like to postpone this to the next version.
No branches or pull requests
Hello
how do i create a migration with an integer field auto_incremental ? This field won't be the id or key.
The text was updated successfully, but these errors were encountered: