-
-
Notifications
You must be signed in to change notification settings - Fork 521
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
Support for BYTEA Postgres primary keys #286
Comments
sea-orm/tests/common/features/metadata.rs Lines 5 to 15 in 57c2553
|
The errors are expected. I will create a PR now to make it work! Stay tuned |
Thank you so much! Loving this crate so far btw, refactoring our large codebase to make it finally unit testable. Thanks for the quick help |
Thanks for the support! Do recommend |
Hey @robot-head, please try #287. Simply... sea-orm = { version = "^0.3", git = "https://github.com/SeaQL/sea-orm.git", branch = "vec-u8-primary-key", ... } P.S. For now, it works on Postgres but not MySQL and MariaDB |
Cool, we definitely would like to know a bit more about your scenario! |
…p_with_time_zone_len issues-285 Fix timestamp_with_time_zone_len
Currently any column marked as a primary key needs to satisfy
TryFromU64
.A BYTEA (
Vec<u8>
) does not satisfy this (and, I don't think ever could).Would it be possible to add support for this type of primary key? We use it a lot in our application
The text was updated successfully, but these errors were encountered: