peewee_migrate2
peewee_migrate2 copied to clipboard
Primary key
Hi,
The primary_key attribute is not reported.
My class :
class Test(BaseModel): -id = BigAutoField(primary_key=True)
Migrate :
class Test(BaseModel): -id = BigAutoField()
I use Postgres and consequently the following entity : PostgresqlDatabase
Docs : https://docs.peewee-orm.com/en/latest/peewee/api.html?highlight=PostgresqlDatabase#Database https://docs.peewee-orm.com/en/latest/peewee/api.html#BigAutoField
Thanks !