mirror of
https://github.com/django/django.git
synced 2024-12-27 03:25:58 +00:00
10b2441381
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15286 bcc190cf-cafb-0310-a4f2-bffc1f526a37
10 lines
284 B
Python
10 lines
284 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, null=True)
|
|
name = models.CharField(max_length=30, blank=True)
|