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

## PR Info - Closes https://github.com/SeaQL/sea-schema/issues/78 ## Breaking Changes - [x] `TableInfo::of_type`, `TableQueryResult::user_defined_type_schema`, `TableQueryResult::user_defined_type_name` have been dropped. Because it's not compatible with the information schema of CockroachDB. And, I think...

## Description CockroachDB is not supported by `sea-schema`, because it queries columns from the table information schema which don't exist in CockroachDB. ## Steps to Reproduce 1. Run an instance...

## Summary After add support for `VIEWS` in sea-query, add support here ## Additional Information sea-query issues: https://github.com/SeaQL/sea-query/issues/179

good first issue

## Summary Add support for postgresql network types ## Additional Information sea-query issues: https://github.com/SeaQL/sea-query/issues/187

## Description sea-orm-cli generate entity \ -u mysql://sea:sea@localhost/bakery \ -o entity/src SELECT `column_name`, `column_type`, `is_nullable`, `column_key`, `column_default`, `extra`, `generation_expression`, `column_comment` FROM `information_schema`.`columns` WHERE `table_schema` = ? AND `table_name` = ?...

## Description I want to generate a relationship graph from an sqlite database using the following code ```rust use std::collections::HashMap; use sea_schema::sqlite::Schema; let schema: Schema = ...; let tables_relations_hash_map: HashMap...

good first issue

``` thread 'main' panicked at 'assertion failed: `(left == right)` Diff < left / right > : "CREATE TABLE `order` ( `id` int NOT NULL AUTO_INCREMENT, `total` decimal(19, 4), `bakery_id`...

good first issue

Hi everyone, thanks so much for your great work on the entire SeaQL project ❤️ ## Description This week we found an issue where `sea-orm-cli generate entity` fails with a...

## PR Info - Closes #128 ## New Features - Upgrades Syn from v1 to v2; No change in outputs should be present, though existing tests were somewhat sparse. ##...

[The vast majority of `syn` dependencies are on v2](https://lib.rs/crates/syn/rev) while this crate continues to rely on v1. This leaves this the only crate in my dependency list that still requires...