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
This was observed with sea-orm-cli generate entity on a table with a BLOB field.
sea-orm-cli generate entity
BLOB
It generated a Model struct with this field
#[sea_orm(column_type = "Custom(\"BLOB\".to_owned())")] pub blob_field: String,
The text was updated successfully, but these errors were encountered:
blob
Vec<u8>
Hey @johnttan, thanks for the report! PR #685 should fix the issue.
You can try it by cloning the branch, then run cargo run -- generate entity --database-url ... on sea-orm/sea-orm-cli directory.
cargo run -- generate entity --database-url ...
sea-orm/sea-orm-cli
Sorry, something went wrong.
billy1624
Successfully merging a pull request may close this issue.
This was observed with
sea-orm-cli generate entity
on a table with aBLOB
field.It generated a Model struct with this field
The text was updated successfully, but these errors were encountered: