Ich versuche das zu teilen models.py
meine App in mehrere Dateien :
Meine erste Vermutung war, dies zu tun:
myproject/
settings.py
manage.py
urls.py
__init__.py
app1/
views.py
__init__.py
models/
__init__.py
model1.py
model2.py
app2/
views.py
__init__.py
models/
__init__.py
model3.py
model4.py
Das funktioniert nicht, dann fand ich diese , aber in dieser Lösung , die ich habe immer noch ein Problem, wenn ich laufe python manage.py sqlall app1
Ich habe so etwas wie:
BEGIN;
CREATE TABLE "product_product" (
"id" serial NOT NULL PRIMARY KEY,
"store_id" integer NOT NULL
)
;
-- The following references should be added but depend on non-existent tables:
-- ALTER TABLE "product_product" ADD CONSTRAINT "store_id_refs_id_3e117eef" FOREIGN KEY ("store_id") REFERENCES "store_store" ("id") DEFERRABLE INITIALLY DEFERRED;
CREATE INDEX "product_product_store_id" ON "product_product" ("store_id");
COMMIT;
Ich bin mir da nicht ganz sicher, aber ich mache mir Sorgen um den Teil The following references should be added but depend on non-existent tables:
Dies ist meine model1.py-Datei:
from django.db import models
class Store(models.Model):
class Meta:
app_label = "store"
Dies ist meine model3.py-Datei:
from django.db import models
from store.models import Store
class Product(models.Model):
store = models.ForeignKey(Store)
class Meta:
app_label = "product"
Und anscheinend funktioniert es, aber ich habe den Kommentar erhalten alter table
und wenn ich das versuche, passiert dasselbe:
class Product(models.Model):
store = models.ForeignKey('store.Store')
class Meta:
app_label = "product"
Sollte ich die Änderung für Referenzen manuell ausführen? das kann mir Probleme mit dem Süden bringen?
from app1.models.model1 import Store
?