aboutsummaryrefslogtreecommitdiffstats
path: root/examples/simpleexample/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/simpleexample/models.py')
-rw-r--r--examples/simpleexample/models.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/examples/simpleexample/models.py b/examples/simpleexample/models.py
deleted file mode 100644
index b628f895..00000000
--- a/examples/simpleexample/models.py
+++ /dev/null
@@ -1,23 +0,0 @@
-from django.db import models
-
-MAX_INSTANCES = 10
-
-class MyModel(models.Model):
- foo = models.BooleanField()
- bar = models.IntegerField(help_text='Must be an integer.')
- baz = models.CharField(max_length=32, help_text='Free text. Max length 32 chars.')
- created = models.DateTimeField(auto_now_add=True)
-
- class Meta:
- ordering = ('created',)
-
- def save(self, *args, **kwargs):
- """For the purposes of the sandbox, limit the maximum number of stored models."""
- super(MyModel, self).save(*args, **kwargs)
- while MyModel.objects.all().count() > MAX_INSTANCES:
- MyModel.objects.all()[0].delete()
-
- @models.permalink
- def get_absolute_url(self):
- return ('simpleexample.views.MyModelResource', (self.pk,))
-