Menu
×
×
Correct!
Exercise:In the Test model below, specify a field called 'points', that must be a integer of some sort, positive or negative:
from django.db import models
class Test(models.Model):
points = models.@(12)()
from django.db import models
class Test(models.Model):
points = models.IntegerField()
from django.db import models
class Test(models.Model):
points = models.integerField()
from django.db import models
class Test(models.Model):
points = models.ntegerfield()
Not CorrectClick here to try again. Correct!Next ❯ |