You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
309 B
10 lines
309 B
from django.db import models
|
|
from locations_api.models import Location
|
|
|
|
# Create your models here.
|
|
class Contact(models.Model):
|
|
name = models.CharField(max_length=32)
|
|
age = models.IntegerField()
|
|
home = models.ForeignKey(Location, related_name='inhabitants', null=True, on_delete=models.SET_NULL)
|
|
|