検索

phrase: max: clip:
target: order:
Results of 71 - 80 of about 188 for fields (0.083 sec.)
Django 1.6.6 release notes — Django 4.0.6 ドキュメント 5267
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... u rely on users having access to view only certain fields on a model. To address the issue, an exception wil ... #22579 ). Prevented indexes on PostgreSQL virtual fields ( #22514 ). Prevented edge case where values of FK ... fields could be initialized with a wrong value when an in ...
https://man.plustar.jp/django/releases/1.6.6.html - [similar]
モデル — Django 4.0.6 ドキュメント 5267
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ルドを簡単に記述できます; How to create custom model fields を参照してください。 フィールドオプション ¶ フィー ... default_auto_field or globally in the DEFAULT_AUTO_FIELD setting. For example: id = models . BigAutoField ( ... o 3.2: In older versions, auto-created primary key fields were always AutoField s. 詳細な (verbose) フィール ... for the relationship using ManyToManyField.through_fields . If you have more than one foreign key and throug ...
https://man.plustar.jp/django/topics/db/models.html - [similar]
How to create database migrations — Django 4.0.6 ドキュメント 5234
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e and third-party apps. Migrations that add unique fields ¶ Applying a "plain" migration that adds a unique ... : row . uuid = uuid . uuid4 () row . save ( update_fields = [ 'uuid' ]) class Migration ( migrations . Migra ... ignKey s as Django did. Also if it needs any extra fields, they should be added in operations after Separate ... [ migrations . CreateModel ( name = 'AuthorBook' , fields = [ ( 'id' , models . AutoField ( auto_created = T ...
https://man.plustar.jp/django/howto/writing-migrations.html - [similar]
Django 1.9.2 リリースノート — Django 4.0.6 ドキュメント 5234
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ing a reverse OneToOneField in ModelAdmin.readonly_fields ( #26060 ). Fixed a crash when calling the migrate ... in the GeoJSON serializer output regardless of the fields parameter ( #26138 ). Fixed the contrib.gis map wi ... ms display the initial of values of their disabled fields ( #26129 ). 目次 Django 1.9.2 リリースノート Secur ...
https://man.plustar.jp/django/releases/1.9.2.html - [similar]
GeoDjango — Django 4.0.6 ドキュメント 5201
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Backends Creating and Saving Models with Geometry Fields Creating and Saving Models with Raster Fields Spat ...
https://man.plustar.jp/django/ref/contrib/gis/index.html - [similar]
Django 2.2.16 release notes — Django 4.0.6 ドキュメント 5201
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ty in the select_for_update() . When using related fields pointing to a proxy model in the of argument, the ... go 2.0, when copying model instances with a cached fields value ( #31863 ). 目次 Django 2.2.16 release notes ...
https://man.plustar.jp/django/releases/2.2.16.html - [similar]
Django 3.0.10 release notes — Django 4.0.6 ドキュメント 5201
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ty in the select_for_update() . When using related fields pointing to a proxy model in the of argument, the ... go 2.0, when copying model instances with a cached fields value ( #31863 ). 目次 Django 3.0.10 release notes ...
https://man.plustar.jp/django/releases/3.0.10.html - [similar]
GeoDjango's admin site — Django 4.0.6 ドキュメント 5168
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... t to False , disables editing of existing geometry fields in the admin. 注釈 This is different from adding t ... he geometry field to readonly_fields , which will only display the WKT of the geometry. ...
https://man.plustar.jp/django/ref/contrib/gis/admin.html - [similar]
設定 — Django 4.0.6 ドキュメント 5168
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... LE_UPLOAD_MAX_MEMORY_SIZE . DATA_UPLOAD_MAX_NUMBER_FIELDS ¶ デフォルト値: 1000 The maximum number of paramet ... GET or POST before a SuspiciousOperation ( TooManyFields ) is raised. You can set this to None to disable t ... ected to receive an unusually large number of form fields should tune this setting. The number of request pa ... The default formatting to use for displaying date fields in any part of the system. Note that if USE_L10N i ...
https://man.plustar.jp/django/ref/settings.html - [similar]
はじめての Django アプリ作成、その 7 — Django 4.0.6 ドキュメント 5135
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... estion class QuestionAdmin ( admin . ModelAdmin ): fields = [ 'pub_date' , 'question_text' ] admin . site . ... estion class QuestionAdmin ( admin . ModelAdmin ): fieldsets = [ ( None , { 'fields' : [ 'question_text' ]}) ... , ( 'Date information' , { 'fields' : [ 'pub_date' ]}), ] admin . site . register ( Q ... uestion , QuestionAdmin ) fieldsets の各タプルの先頭の要素はフィールドセットのタイト ...
https://man.plustar.jp/django/intro/tutorial07.html - [similar]