ForeignKeyをモデル化する方法を教えてください。 は今models.py私はForeing key.Userテーブルとして扱うのuser_id & NAME_IDをしたいForeignKeyをモデル化する方法を教えてください。
from django.db import models
# Create your models here.
class User(models.Model):
user_id = models.CharField(max_length=200)
name_id = models.CharField(max_length=200)
regist_date = models.DateTimeField(auto_now=True)
class Item(models.Model):
user_id = models.CharField(max_length=200)
name = models.CharField(max_length=200)
item_name = models.CharField(max_length=200)
price = models.CharField(max_length=200)
のようなユーザー&アイテムのテーブルを持っていることは、親テーブルであり、項目である子one.Iは、アイテムのuser_idの& NAME_IDがForeignKeyのを持ってすべきだと思います以下のような
class Item(models.Model):
user_id = models.ForeignKey()
name = models.ForeignKey()
しかし、どのように私はこれらの2モデルがユーザーで接続する必要がありますが、親&項目である私はそれを書く必要がありますどのように?子ですか?
コードを書いてはいけません。必要なものだけをロジックに伝えてください。 –