2008-08-10 01:19:23 +08:00
|
|
|
"""
|
|
|
|
Tests for forcing insert and update queries (instead of Django's normal
|
2011-12-18 01:37:24 +08:00
|
|
|
automatic behavior).
|
2008-08-10 01:19:23 +08:00
|
|
|
"""
|
2011-07-13 17:35:51 +08:00
|
|
|
from django.db import models
|
2008-08-10 01:19:23 +08:00
|
|
|
|
2011-10-14 02:04:12 +08:00
|
|
|
|
2008-08-10 01:19:23 +08:00
|
|
|
class Counter(models.Model):
|
2013-11-04 02:17:58 +08:00
|
|
|
name = models.CharField(max_length=10)
|
2008-08-10 01:19:23 +08:00
|
|
|
value = models.IntegerField()
|
|
|
|
|
2013-11-03 12:36:09 +08:00
|
|
|
|
2011-11-13 03:06:39 +08:00
|
|
|
class InheritedCounter(Counter):
|
|
|
|
tag = models.CharField(max_length=10)
|
|
|
|
|
2013-11-03 12:36:09 +08:00
|
|
|
|
2011-11-13 03:06:39 +08:00
|
|
|
class ProxyCounter(Counter):
|
|
|
|
class Meta:
|
|
|
|
proxy = True
|
|
|
|
|
2013-11-03 12:36:09 +08:00
|
|
|
|
2011-11-13 03:06:39 +08:00
|
|
|
class SubCounter(Counter):
|
|
|
|
pass
|
|
|
|
|
2013-11-03 12:36:09 +08:00
|
|
|
|
2008-08-10 01:19:23 +08:00
|
|
|
class WithCustomPK(models.Model):
|
|
|
|
name = models.IntegerField(primary_key=True)
|
|
|
|
value = models.IntegerField()
|