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

## Adds Generating a new migration no works even if migrations are not at the root of their own crate. I didn't want to have an entire separate crate just...

## Motivation If I create an enum through an sea-orm migration I'll get something like this auto-generated ```rs #[derive(Debug, Clone, PartialEq, EnumIter, DeriveActiveEnum)] #[sea_orm(rs_type = "String", db_type = "Enum", enum_name...

in an effort to remove time v0.1 from the dep graph also see https://github.com/SeaQL/sea-query/pull/410

## PR Info - Closes #934 - Dependencies: - - Dependents: - ## Adds - [x] `-l`/`--lib` flag ## Fixes N/A ## Breaking Changes N/A ## Changes N/A

## Description In the "2022-08-06' version of rust nightly. Seaorm cannot compile ## Steps to Reproduce 1. Upgrade to latest rust nightly which release in 2022-08-07 2. Run the program....

## Description ## Steps to Reproduce i try to update a model by this code ```rust let result = item // Model .into_active_model() .update(&conn) .await .unwrap(); ``` ### Expected Behavior...

## Motivation The ordering of migrations may clutter, if people from different timezones are contributing to the same project. A UTC universal time may be able to fix this. ##...

good first issue

## Motivation As a newcomer, I found it difficult to make VSCode understand the code written in the `migration` folder. It is because the migration is not imported in the...

Native support of `time` crate has been added in PR https://github.com/launchbadge/sqlx/pull/1865 and released as part of SQLx [0.6.1](https://github.com/launchbadge/sqlx/blob/main/CHANGELOG.md). Now we could bind `time` on to SQLite query statement and get...

good first issue

## Description Running the command: ``` sea-orm-cli migrate ... ``` Always runs migrations against the `public` schema in PostgreSQL rather than the schema specified in `.env` ## Steps to Reproduce...

good first issue