5 lines
96 B
Python
5 lines
96 B
Python
from django.db import models
|
|
|
|
class Item(models.Model):
|
|
text = models.TextField(default='')
|