sea-orm icon indicating copy to clipboard operation
sea-orm copied to clipboard

🐚 An async & dynamic ORM for Rust

Results 358 sea-orm issues
Sort by recently updated
recently updated
newest added

## Motivation I would like to use[ Postgres network types](https://www.postgresql.org/docs/current/datatype-net-types.html) (i.e. `inet`) in my `Model` definitions. I understand there may be workarounds, so this is not urgent but would be...

## Description When querying data, adding a filter using a `Condition::any` causes any further calls to `filter` to also be part of that `any` condition. ## Steps to Reproduce 1....

# Update (not really since I never submitted the original but oh well) **This was originally a bug report, but now it is really a feature request, but I'm keeping...

## Description `create_table_from_entity` create a foreign key name, that can get quite long. In my case 69 characters. The maximum in MySQL is 64 characters. ## Steps to Reproduce Generate...

## Summary One can run a script to verify whether their changes are working, do they pass the automated tests etc? ## Motivation Integration tests ## Additional Information

good first issue

## Description `insert_many` with `on_conflit` and `do_nothing` panics if every given key conflicts with existing rows. ``` thread 'main' panicked at 'called `Option::unwrap()` on a `None` value', /usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/sea-orm-0.9.0/src/executor/insert.rs:121:54 note: run...

First off, thanks for all the hard work! ## Description When trying to use `sea-orm-cli generate entity` on a large Postgres 9.6.22 database (>400 tables of varying shapes, sizes, constraints,...

## PR Info Currently it doesn't seem possible to use `DeriveIntoActiveModel` with a field with `Option` or `Option` because the `IntoActiveValue` trait is missing. ```rust error[E0277]: the trait bound `std::option::Option:...

I created a migration named `initial-tables`, however, I had to change it since it wasn't valid as a Rust module name. ![image](https://user-images.githubusercontent.com/14791619/179374275-a2b2909d-6008-4f4e-9667-cff4d16431ae.png) I'm sure there are some other characters that...

## PR Info - Closes SeaQL/sea-orm/issues/591 - Dependencies: - SeaQL/sea-orm/pull/611 - Dependents: - ## Adds - Add pre-commit hooks to format and lint ## Fixes - [ ] ## Breaking...