12 lines
334 B
Python
12 lines
334 B
Python
from django.db import models
|
|
|
|
|
|
# Create your models here.
|
|
class Product(models.Model):
|
|
title = models.CharField(max_length=100)
|
|
model3d = models.FileField(default=None, blank=True, null=True, upload_to="back/files")
|
|
description = models.TextField(default=None, null=True)
|
|
|
|
def __str__(self):
|
|
return self.title
|