検索

phrase: max: clip:
target: order:
Results of 81 - 90 of about 170 for key (0.054 sec.)
Model index reference — Django 4.0.6 ドキュメント 5245
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... fields to be included in the covering index as non-key columns. This allows index-only scans to be used f ... ltiple column index but with the drawback that non-key columns can not be used for sorting or filtering. ...
https://man.plustar.jp/django/ref/models/indexes.html - [similar]
Django 1.6 release notes — Django 4.0.6 ドキュメント 5245
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... UPDATE the database if the instance has a primary key value. Previously SELECT was performed to determin ... w based classes. Added the django.db.models.ForeignKey.db_constraint and django.db.models.ManyToManyField ... he new dumpdata --pks option specifies the primary keys of objects to dump. This option can only be used ... tView now support HTTP PATCH method. GenericForeignKey now takes an optional for_concrete_model argument, ...
https://man.plustar.jp/django/releases/1.6.html - [similar]
Django 2.2.14 release notes — Django 4.0.6 ドキュメント 5245
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... n 2.2.13. Bugfixes ¶ Fixed messages of InvalidCacheKey exceptions and CacheKeyWarning warnings raised by ... cache key validation ( #31654 ). 目次 Django 2.2.14 release ...
https://man.plustar.jp/django/releases/2.2.14.html - [similar]
Django 2.2 リリースノート — Django 4.0.6 ドキュメント 5245
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... . rlwrap provides a command history and editing of keyboard input. The new makemigrations --no-header opt ... ttribute on Aggregate subclasses allows a distinct keyword argument to be specified on initialization to ... アル化 ¶ You can now deserialize data using natural keys containing forward references by passing handle_f ... se SchemaEditor methods are added: _create_primary_key_sql() and _delete_primary_key_sql() _delete_index_ ...
https://man.plustar.jp/django/releases/2.2.html - [similar]
Advanced testing topics — Django 4.0.6 ドキュメント 5245
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... efore the test run: class TestsThatDependsOnPrimaryKeySequences ( TransactionTestCase ): reset_sequences ... pk , 1 ) Unless you are explicitly testing primary keys sequence numbers, it is recommended that you do n ... ot hard code primary key values in tests. Using reset_sequences = True will ... slow down the test, since the primary key reset is a relatively expensive database operation ...
https://man.plustar.jp/django/topics/testing/advanced.html - [similar]
Django 1.11.6 リリースノート — Django 4.0.6 ドキュメント 5188
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... using the name of a model's autogenerated primary key ( id ) in an Index 's fields ( #28597 ). Fixed a r ...
https://man.plustar.jp/django/releases/1.11.6.html - [similar]
Django 1.11.9 リリースノート — Django 4.0.6 ドキュメント 5188
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... uoted db_table ( #28876 ). Fixed incorrect foreign key constraint name for models with quoted db_table ( ... . Fixed a regression in caching of a GenericForeignKey when the referenced model instance uses more than ...
https://man.plustar.jp/django/releases/1.11.9.html - [similar]
Django 1.4.9 release notes — Django 4.0.6 ドキュメント 5188
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... speed of our PBKDF2 algorithm by not rehashing the key on every iteration. Bugfixes ¶ Fixed a data corrup ...
https://man.plustar.jp/django/releases/1.4.9.html - [similar]
Django 3.1.5 release notes — Django 4.0.6 ドキュメント 5188
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... in 3.1.4. Bugfixes ¶ Fixed __isnull=True lookup on key transforms for JSONField with Oracle and SQLite ( ...
https://man.plustar.jp/django/releases/3.1.5.html - [similar]
多対一 (many-to-one) 関係 — Django 4.0.6 ドキュメント 5188
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ¶ To define a many-to-one relationship, use ForeignKey : from django.db import models class Reporter ( mo ... = models . DateField () reporter = models . ForeignKey ( Reporter , on_delete = models . CASCADE ) def __ ... e an object before it can be assigned to a foreign key relationship. For example, creating an Article wit ... ]> For the related lookup you can supply a primary key value or pass the related object explicitly: >>> A ...
https://man.plustar.jp/django/topics/db/examples/many_to_one.html - [similar]