mirror of
https://github.com/django/django.git
synced 2025-10-15 01:39:19 +00:00
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@10583 bcc190cf-cafb-0310-a4f2-bffc1f526a37
17 lines
457 B
Python
17 lines
457 B
Python
import os
|
|
from django.db import models
|
|
|
|
class Person(models.Model):
|
|
name = models.CharField(max_length=100)
|
|
|
|
class Triple(models.Model):
|
|
left = models.IntegerField()
|
|
middle = models.IntegerField()
|
|
right = models.IntegerField()
|
|
|
|
class Meta:
|
|
unique_together = (('left', 'middle'), ('middle', 'right'))
|
|
|
|
class FilePathModel(models.Model):
|
|
path = models.FilePathField(path=os.path.dirname(__file__), match=".*\.py$", blank=True)
|