Results 2 comments of Chedi

@clintonb you are almost correct, but because the default behaviour of the management commands execution is to disable the localization adding LANGUAGE_CODE to the request will have no effect. ```python...

this is my workaround to silence that type of errors (not my proudest hack but it work) ```python from sqlmodel import SQLModel from sqlalchemy.orm import declared_attr class User(SQLModel, table=True): name:...