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
2984b30c
Kaydet (Commit)
2984b30c
authored
Tem 21, 2014
tarafından
Andrew Godwin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #23039: Don't try to serialize unmanaged models in tests
üst
5875b8d1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
creation.py
django/db/backends/creation.py
+1
-1
models.py
tests/migration_test_data_persistence/models.py
+7
-0
No files found.
django/db/backends/creation.py
Dosyayı görüntüle @
2984b30c
...
...
@@ -424,7 +424,7 @@ class BaseDatabaseCreation(object):
# Make a function to iteratively return every object
def
get_objects
():
for
model
in
sort_dependencies
(
app_list
):
if
not
model
.
_meta
.
proxy
and
router
.
allow_migrate
(
self
.
connection
.
alias
,
model
):
if
not
model
.
_meta
.
proxy
and
model
.
_meta
.
managed
and
router
.
allow_migrate
(
self
.
connection
.
alias
,
model
):
queryset
=
model
.
_default_manager
.
using
(
self
.
connection
.
alias
)
.
order_by
(
model
.
_meta
.
pk
.
name
)
for
obj
in
queryset
.
iterator
():
yield
obj
...
...
tests/migration_test_data_persistence/models.py
Dosyayı görüntüle @
2984b30c
...
...
@@ -3,3 +3,10 @@ from django.db import models
class
Book
(
models
.
Model
):
title
=
models
.
CharField
(
max_length
=
100
)
class
Unmanaged
(
models
.
Model
):
title
=
models
.
CharField
(
max_length
=
100
)
class
Meta
:
managed
=
False
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