Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
"""
|
|
|
|
Tests for the update() queryset method that allows in-place, multi-object
|
|
|
|
updates.
|
|
|
|
"""
|
|
|
|
|
|
|
|
from django.db import models
|
|
|
|
|
2011-10-14 02:04:12 +08:00
|
|
|
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
class DataPoint(models.Model):
|
|
|
|
name = models.CharField(max_length=20)
|
|
|
|
value = models.CharField(max_length=20)
|
|
|
|
another_value = models.CharField(max_length=20, blank=True)
|
|
|
|
|
2013-11-03 05:34:05 +08:00
|
|
|
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
class RelatedPoint(models.Model):
|
|
|
|
name = models.CharField(max_length=20)
|
2015-07-22 22:43:21 +08:00
|
|
|
data = models.ForeignKey(DataPoint, models.CASCADE)
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
|
|
|
|
2010-04-03 19:45:31 +08:00
|
|
|
class A(models.Model):
|
|
|
|
x = models.IntegerField(default=10)
|
|
|
|
|
2013-11-03 05:34:05 +08:00
|
|
|
|
2010-04-03 19:45:31 +08:00
|
|
|
class B(models.Model):
|
2015-07-22 22:43:21 +08:00
|
|
|
a = models.ForeignKey(A, models.CASCADE)
|
2010-04-03 19:45:31 +08:00
|
|
|
y = models.IntegerField(default=10)
|
|
|
|
|
2013-11-03 05:34:05 +08:00
|
|
|
|
2010-04-03 19:45:31 +08:00
|
|
|
class C(models.Model):
|
|
|
|
y = models.IntegerField(default=10)
|
|
|
|
|
2013-11-03 05:34:05 +08:00
|
|
|
|
2010-04-03 19:45:31 +08:00
|
|
|
class D(C):
|
2015-07-22 22:43:21 +08:00
|
|
|
a = models.ForeignKey(A, models.CASCADE)
|
2014-11-16 03:36:41 +08:00
|
|
|
|
|
|
|
|
|
|
|
class Foo(models.Model):
|
|
|
|
target = models.CharField(max_length=10, unique=True)
|
|
|
|
|
|
|
|
|
|
|
|
class Bar(models.Model):
|
2015-07-22 22:43:21 +08:00
|
|
|
foo = models.ForeignKey(Foo, models.CASCADE, to_field="target")
|
2017-07-08 01:01:38 +08:00
|
|
|
m2m_foo = models.ManyToManyField(Foo, related_name="m2m_foo")
|
2022-06-17 15:19:49 +08:00
|
|
|
x = models.IntegerField(default=0)
|
2020-06-20 12:55:03 +08:00
|
|
|
|
|
|
|
|
|
|
|
class UniqueNumber(models.Model):
|
|
|
|
number = models.IntegerField(unique=True)
|
2021-04-15 03:11:17 +08:00
|
|
|
|
|
|
|
|
|
|
|
class UniqueNumberChild(UniqueNumber):
|
|
|
|
pass
|