-
Notifications
You must be signed in to change notification settings - Fork 697
New issue
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
SQLite autoincrement columns are not created #669
Comments
Does anyone has the same problem?
|
I found two other possible solutions.
(just let autoincrement be before primary key). Not intuitive, but works.
|
Fixed in master and will be available soon. |
Tapac
added a commit
that referenced
this issue
Nov 3, 2019
Tapac
added a commit
that referenced
this issue
Nov 3, 2019
Tapac
added a commit
that referenced
this issue
Nov 3, 2019
Tapac
added a commit
that referenced
this issue
Nov 3, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I tried to create integer autoincremented column via Exposed DSL. In debug I see that SQLite dialect is properly selected, but both variants I tried doesn't work.
This definition:
gives:
The same is created without .primaryKey()
Correct SQL in this case should be:
according to https://www.sqlite.org/autoinc.html.
Probably SQLiteDialect should be somehow updated?
The text was updated successfully, but these errors were encountered: