Created
November 16, 2019 05:43
-
-
Save aballah-chamakh/7c27bbc4604c9948b93db5e42dadf4c7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from django.db import models | |
| class Inference(models.Model): | |
| name = models.CharField(max_length=255) | |
| result = models.CharField(max_length=255) | |
| def __str__(self): | |
| return '{name} => result : {result}'.format(name=self.name,result=self.result) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment