5 lines
108 B
Python
5 lines
108 B
Python
from django.db import models
|
|
|
|
|
|
class StringModel(models.Model):
|
|
name = models.CharField(max_length=100)
|