Created
October 19, 2016 20:40
-
-
Save anddam/afbd6e2fbc7400336198a8a395346ce6 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
| class Anomaly1(models.Model): | |
| "Kind of anomaly that only brings its name" | |
| name = models.CharField(max_length=10) | |
| class Anomaly2(models.Model): | |
| "Kind of anomaly that only brings a numeric value and no name" | |
| intensity = models.FloatField() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment