-
**Is your feature request related to a problem? Please describe.**
Thanks for putting this together!
One thing which annoys me about Supabase-Py is the lack of Query Builder / ORM which feels like…
-
We'll need to assert the ORM usage correctness, which implies database testing: mocks, fixtures and transactions included.
-
It would be awesome if support for the [Peewee ORM](https://github.com/coleifer/peewee) could be added to SuperAdmin. The [wtf-peewee](https://github.com/coleifer/wtf-peewee) shold provide ome relevan…
-
This project used ORM is Peewee。
Peewee ORM is a simple and lightweight ORM, but it does not support asynchronous operations.
Can you change to tortoise ORM?
-
I have six migration files that build up the final database structure. The last one runs some SQL to add Default behavior to created_at columns.
```
def migrate_forward(op, old_orm, new_orm):
…
-
Should we integrate [SQLModel](https://sqlmodel.tiangolo.com/) into `sdssdb` for the SQLAlchemy models? I don't think this is strictly necessary for 1.0, but maybe this is something to consider for l…
-
Sqlalchemy has connection pooling built-in to its database connection that you can easily access/set up. Can we, or should we, implement a similar connection pooling for peewee? Peewee has this feat…
-
Docs: http://docs.peewee-orm.com/en/latest/peewee/playhouse.html#schema-migrations
-
If we use Peewee without peewee_migrate, we would just execute this: `db.create_tables([Model1, Model2])`
So, if we use peewee_migrate, we should avoid this command and only use peewee_migrate, rig…
-
**Is your feature request related to a problem? Please describe.**
Currently, the generation of the container flows takes a while, especially for larger datasets.
Most likely, this is due to the I/O…