jacky banh
jacky banh
hello all, Assume we have a simple `Post` table: ```python from piccolo.columns import * class Post(Table): uuid = UUID(primary_key=True) user = ForeignKey(User, null=False) description = Text() users_mentioned = Array(UUID()) ```...
Hello all, I'm trying to build a react native app using this 3dgs viewer but couldn't make it work on android (works on web). I suspect there's an issue with...
Currently, if you provide a URL with a extra parameters, `sceneFormatFromPath` would fail to gather what extension it could be. for example, you could have a signed url such as:...
With the rise of storing `vectors` and very unique data structures, the base columns from `piccolo.columns` is simply not good enough to express these datatypes for our DBs. In my...
I receive Query string compile errors when I use `Array.any` for `postgres` (cockroach) manager ```python from piccolo.table import Table from piccolo.columns import ( Array, Text, ) class Helloworld(Table): test =...
It has been a long journey with piccolo ORM (still better than django). I am currently performing a migration to a prod environment with +100 files. And I have notice...
Hello all, Assume you have a auto migration which adds new columns: ```text 1. manager.add_column(...) 2. manager.add_column(...) 3. manager.add_column(Some foreign key that doesn't exist as of yet will make the...
hello all, so there was some slight issue with the migrations process, where its incredibly buggy due to no [rollbacks](https://github.com/piccolo-orm/piccolo/issues/1254) when migrations breaks midway through the `--fake` parameter for `migrations...