10 lines
179 B
Python
10 lines
179 B
Python
from django.db import models
|
|
|
|
# Create your models here.
|
|
|
|
|
|
class Style(models.Model):
|
|
name = models.CharField(max_length=255)
|
|
|
|
def __str__(self):
|
|
return self.name
|