Amin Alaee
Amin Alaee
Right now we support both at the same time: ```python # Raw query await Movie.query({"name": "X"}).first() # Query builder await Movie.query(Movie.name == "X").first() ``` This leas to complexity handling both...
After the previous attempt #1377 , this PR will allow StaticFiles to follow symlinks outside the directory. Fixes https://github.com/encode/starlette/issues/1083 Thanks to @Kludex and @m1ckey
Simple implementation for #560 to start a discussion. `url_for` only supports path parameters and in some scenarios like pagination, it would be useful to add query parameters to it. and...
There's a redundant import which can be fixed with either of these: ```python from sqlalchemy import CHAR, types ``` Or: ```python from sqlalchemy.types import CHAR, TypeDecorator ```
I'm usually not a fan of benchmarks but I think it'd be a good idea to have some benchmarks comparing `piccolo` with other `sync`/`async` ORMs. It will also help with...
Implementing abstract tables to avoid repeating columns for the tables. Obviously the abstract tables are ignored in automatic migrations. It would be something like this: ``` class Base(Table, abstract=True): created_at...
### Checklist - [X] There are no similar issues or pull requests for this yet. ### Is your feature related to a problem? Please describe. _No response_ ### Describe the...
Need to check SQLAlchemy V2 migration steps. As far as I can see we're using SQLAlchemy 1.4 features, It should be ready, but needs checking and fixing.
### Discussed in https://github.com/aminalaee/sqladmin/discussions/59 Originally posted by **javtau** February 19, 2022 Hi, this is so great, Are you thinking on implement the multiple pk support for foreign primary keys like...