-
-
Notifications
You must be signed in to change notification settings - Fork 238
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
db.NewCreateTable with bun:",pk,autoincrement"
did not create table sqlite_sequence
#929
Comments
As far as I can tell, the reason the sequence was not created is that in SQLite you get unique autoincremented ID column (called References:
That being said, there is a dedicated I imagine that the current lack of support for it in Looks like a small change, I'll try to come up with a PR for this. |
* refactor: delegate autoincrement to dialects * feat: support AUTOINCREMENT PKs in SQLite * chore: use succinct syntax * refactor: push the check for PK to the caller #929
This issue has been automatically marked as stale because it has not had activity in the last 30 days. If there is no update within the next 7 days, this issue will be closed. |
generated create table sql is:
there is no " autoincrement "
The text was updated successfully, but these errors were encountered: