検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 49 for ManyToManyField (0.028 sec.)
モデルフィールドリファレンス — Django 4.0.6 ドキュメント 12949
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... od. This option is valid on all field types except ManyToManyField and OneToOneField . Note that when unique is True ... e). If in doubt, leave it to its default of True . ManyToManyField ¶ class ManyToManyField ( to , ** options ) ¶ A ma ... f the join table using the db_table option. 引数 ¶ ManyToManyField accepts an extra set of arguments -- all optional ... -- that control how the relationship functions. ManyToManyField. related_name ¶ Same as ForeignKey.related_name . ...
https://man.plustar.jp/django/ref/models/fields.html - [similar]
モデル — Django 4.0.6 ドキュメント 11681
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... d s. 詳細な (verbose) フィールド名 ¶ ForeignKey 、 ManyToManyField 、 OneToOneField の 3 つを除いた各フィールドは、任 ... dels . CharField ( max_length = 30 ) ForeignKey 、 ManyToManyField 、 OneToOneField の 3 つは最初の引数にモデルクラス ... ose_name = "the related poll" , ) sites = models . ManyToManyField ( Site , verbose_name = "list of sites" ) place = ... 関係 ¶ 多対多の関係を定義するには、 django.db.models.ManyToManyField を使用してください。 使い方は他の Field 型と同じで ...
https://man.plustar.jp/django/topics/db/models.html - [similar]
Model _meta API — Django 4.0.6 ドキュメント 10549
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... clude any fields that have a related_name (such as ManyToManyField , or ForeignKey ) that start with a "+". >>> from ... ld: date_joined>, <django.db.models.fields.related.ManyToManyField: groups>, <django.db.models.fields.related.ManyToM ... ld: date_joined>, <django.db.models.fields.related.ManyToManyField: groups>, <django.db.models.fields.related.ManyToM ...
https://man.plustar.jp/django/ref/models/meta.html - [similar]
Django 1.7.4 release notes — Django 4.0.6 ドキュメント 10549
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Made the migration's RenameModel operation rename ManyToManyField tables ( #24135 ). Fixed a migration crash on MySQ ... y fix regression, #24193 ). Fixed schema check for ManyToManyField to look for internal type instead of checking clas ... se , notes , migration , Fixed , Bugfixes , from , ManyToManyField , contrib , when , crash クイック検索 Last update: ...
https://man.plustar.jp/django/releases/1.7.4.html - [similar]
Signals — Django 4.0.6 ドキュメント 9568
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... jango.db.models.signals. m2m_changed ¶ Sent when a ManyToManyField is changed on a model instance. Strictly speaking, ... this is not a model signal since it is sent by the ManyToManyField , but since it complements the pre_save / post_sav ... sender The intermediate model class describing the ManyToManyField . This class is automatically created when a many- ... be an instance of the sender , or of the class the ManyToManyField is related to. action リレーションに対して行われた ...
https://man.plustar.jp/django/ref/signals.html - [similar]
システムチェックフレームワーク — Django 4.0.6 ドキュメント 9417
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... _DEFAULT , but has no default value. fields.E330 : ManyToManyField s cannot be unique. fields.E331 : Field specifies ... <field name> . fields.W340 : null has no effect on ManyToManyField . fields.W341 : ManyToManyField does not support v ... . fields.W343 : limit_choices_to has no effect on ManyToManyField with a through model. This check appeared before D ... ame> . fields.W345 : related_name has no effect on ManyToManyField with a symmetrical relationship, e.g. to "self". モ ...
https://man.plustar.jp/django/ref/checks.html - [similar]
Django 1.6 release notes — Django 4.0.6 ドキュメント 9282
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... dels.ForeignKey.db_constraint and django.db.models.ManyToManyField.db_constraint options. The jQuery library embedded ... e such queries. Help text of model form fields for ManyToManyField fields ¶ HTML rendering of model form fields corre ... sponding to ManyToManyField model fields used to get the hard-coded sentence: ... employ custom model form fields and/or widgets for ManyToManyField model fields whose UIs do rely on the automatic pr ...
https://man.plustar.jp/django/releases/1.6.html - [similar]
How to create database migrations — Django 4.0.6 ドキュメント 8708
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nPython 操作の2番目の引数を調整します。 Changing a ManyToManyField to use a through model ¶ If you change a ManyToMan ... State . For example, if we had a Book model with a ManyToManyField linking to Author , we could add a through model A ... ame = 'book' , name = 'authors' , field = models . ManyToManyField ( to = 'core.Author' , through = 'core.AuthorBook' ... のアプリ間でデータをマイグレーションする Changing a ManyToManyField to use a through model 未管理状態のモデルを管理状態 ...
https://man.plustar.jp/django/howto/writing-migrations.html - [similar]
Django の admin サイト — Django 4.0.6 ドキュメント 8572
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... . ModelAdmin. filter_horizontal ¶ デフォルトでは、 ManyToManyField は <select multiple> で admin サイトで表示されます ... クスは、たくさんのアイテムを選択するには不向きです。 ManyToManyField をこのリストに加えると、代わりにかっこよくて控えめ ... 警告 リレーションフィールド (例えば ForeignKey や ManyToManyField ) でカスタムウィジェットを使用したいときは、, raw_ ... ango は関係オブジェクトの __str__() を表示します。 ManyToManyField フィールドは、テーブル内で各行に対して個別の SQL ス ...
https://man.plustar.jp/django/ref/contrib/admin/index.html - [similar]
クエリを作成する — Django 4.0.6 ドキュメント 8572
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ield ( default = date . today ) authors = models . ManyToManyField ( Author ) number_of_comments = models . IntegerFi ... jango はデータベースを操作しません。 ForeignKey と ManyToManyField フィールドを扱う ¶ Updating a ForeignKey field wor ... >>> entry . blog = cheese_blog >>> entry . save () ManyToManyField に対する更新は通常のフィールド更新とは少々異なって ... ( name = "Joe" ) >>> entry . authors . add ( joe ) ManyToManyField に対して複数のレコードを一度に追加するには、 add() ...
https://man.plustar.jp/django/topics/db/queries.html - [similar]
PREV 1 2 3 4 5 NEXT