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

🌿 SQL schema definition and discovery

Results 15 sea-schema issues
Sort by recently updated
recently updated
newest added

## Description I encountered an issue while attempting to generate an entity from a Django site's SQLite database using the `sea-orm-cli`. It seems to fail when dealing with the decimal...

## Motivation Creating a partial index is impossible right now, but adding support for both index type and where predicate would help creating an index like this: CREATE UNIQUE INDEX...

I'm currently in the process of migrating a program from sqlite to sea-orm and used sea-orm-codegen to generate the entities from the existing database. It seems it converted an `UNSIGNED...

I use command `sea-orm-cli generate entity -o entity/src/ --with-serde -t host_site` Adapter is **SQLite** My host_site table DDL: ```sql create table host_site ( host_id integer not null references host, site_id...

## Motivation Add support for year, bit and varbit types. Link: https://github.com/SeaQL/sea-query/pull/466