mirror of
https://github.com/Hopiu/django.git
synced 2026-03-20 07:50:25 +00:00
5 lines
90 B
Python
5 lines
90 B
Python
from django.db import models
|
|
|
|
|
|
class Article(models.Model):
|
|
text = models.TextField()
|