network_inventory/inventory/models/location.py

11 lines
254 B
Python

from django.db import models
from .companies import Customer
class Location(models.Model):
name = models.CharField(max_length=50)
customer = models.ForeignKey(Customer, on_delete=models.CASCADE)
def __str__(self):
return self.name