14 lines
No EOL
464 B
Python
14 lines
No EOL
464 B
Python
from django.db import models
|
|
|
|
|
|
class Manufacturer(models.Model):
|
|
name = models.CharField(max_length=255, unique=True)
|
|
description = models.CharField(max_length=4096, blank=True)
|
|
created_at = models.DateTimeField(auto_now_add=True)
|
|
changed_at = models.DateTimeField(auto_now=True)
|
|
|
|
web_link = models.URLField(null=True, blank=True)
|
|
icon = models.ImageField(null=True, blank=True)
|
|
|
|
def __str__(self):
|
|
return self.name |