Fantix King
Fantix King
Thanks! This deserves a page in the docs.
Sorry just edited my reply - do you mind sharing your example please? I just tried and it's not working: ```python class Vehicle(db.Model): __tablename__ = 'vehicles' id = db.Column(db.BigInteger(), primary_key=True)...
Hey thanks for trying GINO out and sorry for the late reply! Let me take a look at this one.
Here's a modified self-contained version of your example that [works with pytest-aiohttp](https://docs.aiohttp.org/en/stable/testing.html): ```python import pytest from aiohttp import web from gino.ext.aiohttp import Gino DSN = "postgresql:///t713" db = Gino() app...
Thanks for the PR! I think I get your case and I'm with you on making this default, with only one concern: would it break existing applications? Say I remove...
> This pr doesn't actually break anything Well, this is partially true - I got some time today and did some testing, looks like this PR will lead to an...
@infin1tyy Yes! Thanks for the clue. I believe Paul from Gitter was trying to add SQLite support too. These new dialects should be expected in GINO 1.1 or later.
@zhujinhe sorry, no we didn't have any contribution to support MySQL by far. PRs are more than welcome!
I'm working on GINO 2 for SQLAlchemy 1.4 / 2.0 here: https://github.com/python-gino/gino/commits/v2.0.x. This is, for now, a rewrite from scratch, but it will merge code from GINO 1.x once the...
#167 provided some ideas on this topic.