Saya mencoba membagi models.py
aplikasi saya menjadi beberapa file:
Tebakan pertama saya adalah melakukan ini:
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
Ini tidak berhasil, lalu saya menemukan ini , tetapi dalam solusi ini saya masih memiliki masalah, ketika saya menjalankan python manage.py sqlall app1
saya mendapat sesuatu seperti:
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;
Saya tidak begitu yakin tentang ini, tapi saya khawatir tentang bagian itu The following references should be added but depend on non-existent tables:
Ini adalah file model1.py saya:
from django.db import models
class Store(models.Model):
class Meta:
app_label = "store"
Ini adalah file model3.py saya:
from django.db import models
from store.models import Store
class Product(models.Model):
store = models.ForeignKey(Store)
class Meta:
app_label = "product"
Dan ternyata berfungsi tetapi saya mendapat komentar alter table
dan jika saya mencoba ini, hal yang sama terjadi:
class Product(models.Model):
store = models.ForeignKey('store.Store')
class Meta:
app_label = "product"
Jadi, haruskah saya menjalankan perubahan untuk referensi secara manual? ini mungkin membawa saya masalah dengan selatan?
from app1.models.model1 import Store
?