mirror of
https://github.com/jazzband/django-admin2.git
synced 2026-04-23 08:04:43 +00:00
10 lines
226 B
Python
10 lines
226 B
Python
|
|
from django.db import models
|
||
|
|
|
||
|
|
class Post(models.Model):
|
||
|
|
title = models.CharField(max_length=255)
|
||
|
|
body = models.TextField()
|
||
|
|
|
||
|
|
class Comment(models.Model):
|
||
|
|
post = models.ForeignKey(Post)
|
||
|
|
body = models.TextField()
|