Django model field different from db field managed=false
74 views
Skip to first unread message
ISMAIL TAIBANI
unread,
Sep 6, 2022, 1:28:34 PM9/6/22
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Django users
I have model containing field ad_account_id = models.TextField(null=True, blank=True) but this model is managed = False and in database type is int and not textfield whenever i do query using ORM it gives ad_account_id type as int and not str and don't through any exception as well why is it so ? and where can i read about this more