Daniel Ach

Results 1 comments of Daniel Ach

Ok this is my model : ``` class Customer(models.Model): name = models.TextField() type_customer = models.TextField(db_column='type') class Meta: db_table = 'medications' and the object i created is `Customer(name='daniel') ``` when i...