mirror of
https://github.com/django/django.git
synced 2024-11-19 07:54:07 +00:00
18ecf9dc85
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4613 bcc190cf-cafb-0310-a4f2-bffc1f526a37
16 lines
501 B
Python
16 lines
501 B
Python
import tempfile
|
|
from django.db import models
|
|
|
|
class Photo(models.Model):
|
|
title = models.CharField(maxlength=30)
|
|
image = models.FileField(upload_to=tempfile.gettempdir())
|
|
|
|
# Support code for the tests; this keeps track of how many times save() gets
|
|
# called on each instance.
|
|
def __init__(self, *args, **kwargs):
|
|
super(Photo, self).__init__(*args, **kwargs)
|
|
self._savecount = 0
|
|
|
|
def save(self):
|
|
super(Photo, self).save()
|
|
self._savecount +=1 |