sea-orm
                                
                                
                                
                                    sea-orm copied to clipboard
                            
                            
                            
                        🐚 An async & dynamic ORM for Rust
Today I modified a field in the Model, but when querying data, it cannot be queried and there are no errors. Should there be a prompt or something?
## Description mysql 8.4.2 table: ``` CREATE TABLE `public_kv_tab` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT 'primary id', `kv_key` varchar(255) NOT NULL COMMENT 'key', `kv_key_type` tinyint unsigned NOT NULL COMMENT...
## Description When running a query using on conflict update clauses, it errored from the database on execution: `2025-02-15T00:32:52.275908Z ERROR run: task::review: error=Execution Error: error returned from database: there is...
## PR Info - Dependencies: - SeaQL/sea-query#859 ## New Features - [ ] if a `Linked` exists, then `model.find_linked_recursive` will generate a CTE to follow the links recursively and return...
## Description When using a MockDatabase to retrieve a value that we want to not exist, it gives us the wrong value. For example, if I have in it a...
## Description Due to https://github.com/SeaQL/sea-orm/issues/836 and https://github.com/SeaQL/sea-orm/issues/438, I see that you implemented https://github.com/SeaQL/sea-orm/pull/890 which is a rather hacky way to perform mock tests with (in my case) Axum, as also...
## Description table clolumns with big_unsigned type get mapped to an i64 field during entity generation by seaorm-cli ## Steps to Reproduce 1. create a Table in a migration up...
## PR Info - Closes https://github.com/SeaQL/seaography/issues/143 - Dependencies: - https://github.com/SeaQL/seaography/pull/187 - Dependents: - https://github.com/SeaQL/seaography/pull/187 ## New Features - [x] Create an entity and its related entities in a single GraphQL...
## Description If I use ```rust ColumnDef::new(Items::Children) .not_null() .array(ColumnType::Uuid) .default(Value::Array(ArrayType::Uuid, Some(Box::default()))) ``` to try to build a field with an empty array as the default value, the generated SQL is:...
## Description When I use the CLI to generate my `entities` for `seaography` it now also generates a call to the `seaography::register_active_enums!` macro inside of the `mod.rs` file. This macro...