Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
211486f3
Kaydet (Commit)
211486f3
authored
Eki 05, 2015
tarafından
Simon Charette
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #23076, #25505 -- Fixed deletion of intermediate proxy models.
Thanks to James Murty for his work on an alternate patch.
üst
8bdfabed
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
2 deletions
+15
-2
deletion.py
django/db/models/deletion.py
+1
-1
models.py
tests/proxy_model_inheritance/models.py
+6
-1
tests.py
tests/proxy_model_inheritance/tests.py
+8
-0
No files found.
django/db/models/deletion.py
Dosyayı görüntüle @
211486f3
...
...
@@ -55,7 +55,7 @@ def get_candidate_relations_to_delete(opts):
# The candidate relations are the ones that come from N-1 and 1-1 relations.
# N-N (i.e., many-to-many) relations aren't candidates for deletion.
return
(
f
for
f
in
opts
.
get_fields
(
include_hidden
=
True
)
f
for
f
in
opts
.
concrete_model
.
_meta
.
get_fields
(
include_hidden
=
True
)
if
f
.
auto_created
and
not
f
.
concrete
and
(
f
.
one_to_one
or
f
.
one_to_many
)
)
...
...
tests/proxy_model_inheritance/models.py
Dosyayı görüntüle @
211486f3
...
...
@@ -6,7 +6,12 @@ class ConcreteModel(models.Model):
pass
class
ConcreteModelSubclass
(
ConcreteModel
):
class
ProxyModel
(
ConcreteModel
):
class
Meta
:
proxy
=
True
class
ConcreteModelSubclass
(
ProxyModel
):
pass
...
...
tests/proxy_model_inheritance/tests.py
Dosyayı görüntüle @
211486f3
...
...
@@ -9,6 +9,7 @@ from django.utils._os import upath
from
.models
import
(
ConcreteModel
,
ConcreteModelSubclass
,
ConcreteModelSubclassProxy
,
ProxyModel
,
)
...
...
@@ -43,3 +44,10 @@ class MultiTableInheritanceProxyTest(TestCase):
self
.
assertEqual
(
0
,
ConcreteModelSubclassProxy
.
objects
.
count
())
self
.
assertEqual
(
0
,
ConcreteModelSubclass
.
objects
.
count
())
self
.
assertEqual
(
0
,
ConcreteModel
.
objects
.
count
())
def
test_deletion_through_intermediate_proxy
(
self
):
child
=
ConcreteModelSubclass
.
objects
.
create
()
proxy
=
ProxyModel
.
objects
.
get
(
pk
=
child
.
pk
)
proxy
.
delete
()
self
.
assertFalse
(
ConcreteModel
.
objects
.
exists
())
self
.
assertFalse
(
ConcreteModelSubclass
.
objects
.
exists
())
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment