mirror of
https://github.com/django/django.git
synced 2024-11-19 07:54:07 +00:00
3da3716252
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10782 bcc190cf-cafb-0310-a4f2-bffc1f526a37
9 lines
272 B
Python
9 lines
272 B
Python
from django.db import models
|
|
from django.contrib import admin
|
|
|
|
class Parent(models.Model):
|
|
name = models.CharField(max_length=128)
|
|
|
|
class Child(models.Model):
|
|
parent = models.ForeignKey(Parent, editable=False)
|
|
name = models.CharField(max_length=30, blank=True) |