検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 92 for meta (0.041 sec.)
Django の admin サイト — Django 4.0.6 ドキュメント 7044
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... に追加する を参照してください。 ノート ModelForm で Meta.model 属性を定義した場合、 Meta.fields 属性 (もしく ...Meta.exclude 属性) も定義する必要があります。しかし、ad ... n 自身がフィールドを定義する方法を持っているため、 Meta.fields 属性は無視されます。 ModelForm を admin のみ ... ModelAdmin が使用する正しいモデルを提供するため、 Meta.model 属性を省略するのが手っ取り早い解決法です。あ ...
https://man.plustar.jp/django/ref/contrib/admin/index.html - [similar]
マイグレーション操作 — Django 4.0.6 ドキュメント 7044
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... でなければいけません。 options は定義されるモデルの Meta クラスの値からなるオプションの辞書オブジェクトです ... le ) ¶ 定義しているモデルのテーブル名を変更します( Meta サブクラスの db_table オプションを参照します)。 Al ... que constraints (the unique_together option on the Meta subclass). AlterIndexTogether ¶ class AlterIndexTo ... f custom indexes (the index_together option on the Meta subclass). AlterOrderWithRespectTo ¶ class AlterOr ...
https://man.plustar.jp/django/ref/migration-operations.html - [similar]
複数のデータベース — Django 4.0.6 ドキュメント 7044
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... y most migration operations to the value of model._meta.model_name (the lowercased version of the model __ ... es, methods, or managers. You should only rely on _meta . This method can also be used to determine the av ... query inconsistencies introduced because of the time taken for a write to propagate to the replicas). It ... contenttypes models go to auth_db. """ if model . _meta . app_label in self . route_app_labels : return 'a ...
https://man.plustar.jp/django/topics/db/multi-db.html - [similar]
Model index reference — Django 4.0.6 ドキュメント 6964
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ting database indexes. They can be added using the Meta.indexes option. This document explains the API ref ... partial index on an abstract base class, since the Meta.indexes option is inherited by subclasses, with ex ... the db_tablespace option inside the model's class Meta . If neither of those tablespaces are set, the ind ... ex is created in the same tablespace as the table. 参考 For a list of PostgreS ...
https://man.plustar.jp/django/ref/models/indexes.html - [similar]
Tablespaces — Django 4.0.6 ドキュメント 6871
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... the db_tablespace option inside the model's class Meta . This option also affects tables automatically cr ... T_INDEX_TABLESPACE , the index is created in the same tablespace as the tables. An example ¶ class Tablesp ... ( to = "self" , db_tablespace = "indexes" ) class Meta : db_tablespace = "tables" indexes = [ models . In ...
https://man.plustar.jp/django/topics/db/tablespaces.html - [similar]
Django 3.1 release notes — Django 4.0.6 ドキュメント 6792
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... erFilter now filters sensitive values from request.META in exception reports. The new SafeExceptionReporte ... ow customization of sensitive settings and request.META filtering in exception reports. The technical 404 ... itive) 0 for negative numbers which round to zero. Meta.ordering and Meta.unique_together options on model ... .paginator.QuerySetPaginator is removed. A model's Meta.ordering doesn't affect GROUP BY queries. django.c ...
https://man.plustar.jp/django/releases/3.1.html - [similar]
How to integrate Django with a legacy database — Django 4.0.6 ドキュメント 6699
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ed models. That is, managed = False in the model's Meta class tells Django not to manage each table's crea ... _name = models.CharField ( max_length = 70 ) class Meta: managed = False db_table = 'CENSUS_PERSONS' If yo ...
https://man.plustar.jp/django/howto/legacy-databases.html - [similar]
モデルインスタンスリファレンス — Django 4.0.6 ドキュメント 6699
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... d with super()). if len ( values ) != len ( cls . _meta . concrete_fields ): values = list ( values ) valu ... tname in field_names else DEFERRED for f in cls . _meta . concrete_fields ] instance = cls ( * values ) in ... ィールド特有のバリデーションエラーを発生させる方法 ( Meta.fields や Meta.exclude で制限されて) モデルフォーム ... key = True ) class MyProxyModel ( MyModel ): class Meta : proxy = True class MultitableInherited ( MyModel ...
https://man.plustar.jp/django/ref/models/instances.html - [similar]
アップロードファイルとアップロードハンドラ — Django 4.0.6 ドキュメント 6619
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... FileUploadHandler. handle_raw_input ( input_data , META , content_length , boundary , encoding ) [ソース] ... ) をサポートするファイルのようなオブジェクトです。 META は、 request.META と同じオブジェクトです。 content ...
https://man.plustar.jp/django/ref/files/uploads.html - [similar]
Django 4.0 release notes — Django 4.0.6 ドキュメント 6619
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... me = models . CharField ( max_length = 255 ) class Meta : constraints = [ UniqueConstraint ( Lower ( 'firs ... l unique constraints are added to models using the Meta.constraints option. scrypt password hasher ¶ The n ... d filter_rhs . CsrfViewMiddleware now uses request.META['CSRF_COOKIE_NEEDS_UPDATE'] in place of request.ME ...
https://man.plustar.jp/django/releases/4.0.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT