network_inventory/core/models/company.py
2020-01-07 22:20:07 +01:00

12 lines
193 B
Python

from django.db import models
class Company(models.Model):
name = models.CharField(max_length=50)
class Meta:
abstract = True
def __str__(self):
return self.name