検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 106 for max (0.039 sec.)
Django 2.0 リリースノート — Django 4.0.6 ドキュメント 6139
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... d add a DatabaseOperations.cast_char_field_without_max_length attribute with the database data type that ... e used in the Cast function for a CharField if the max_length argument isn't provided. The first argument ... を使う こともできます。 AbstractUser.last_name の max_length が 150 文字に拡大 ¶ django.contrib.auth.mod ... UserChangeForm ): last_name = forms . CharField ( max_length = 30 , required = False ) 管理サイトでユーザ ...
https://man.plustar.jp/django/releases/2.0.html - [similar]
多対一 (many-to-one) 関係 — Django 4.0.6 ドキュメント 6139
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... odels . Model ): first_name = models . CharField ( max_length = 30 ) last_name = models . CharField ( max ... models . Model ): headline = models . CharField ( max_length = 100 ) pub_date = models . DateField () re ...
https://man.plustar.jp/django/topics/db/examples/many_to_one.html - [similar]
クエリー式 — Django 4.0.6 ドキュメント 6088
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... eld as any arguments relating to data validation ( max_length , max_digits , etc.) will not be enforced o ... eld as any arguments relating to data validation ( max_length , max_digits , etc.) will not be enforced o ... tition: >>> from django.db.models import Avg , F , Max , Min , Window >>> from django.db.models.functions ... ndow , >>> ), >>> best = Window ( >>> expression = Max ( 'rating' ), ** window , >>> ), >>> worst = Windo ...
https://man.plustar.jp/django/ref/models/expressions.html - [similar]
モデルインスタンスリファレンス — Django 4.0.6 ドキュメント 6088
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... k ( models . Model ): title = models . CharField ( max_length = 100 ) @classmethod def create ( cls , tit ... k ( models . Model ): title = models . CharField ( max_length = 100 ) objects = BookManager () book = Boo ... odels . Model ): first_name = models . CharField ( max_length = 50 ) last_name = models . CharField ( max ... , ( 'L' , 'Large' ), ) name = models . CharField ( max_length = 60 ) shirt_size = models . CharField ( ma ...
https://man.plustar.jp/django/ref/models/instances.html - [similar]
QuerySet API リファレンス — Django 4.0.6 ドキュメント 6024
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ng ( models . Model ): name = models . CharField ( max_length = 30 ) class Pizza ( models . Model ): name ... = models . CharField ( max_length = 50 ) toppings = models . ManyToManyField ... odel ( models . Model ): f1 = models . CharField ( max_length = 10 ) class Meta : managed = False db_tabl ... odel ( models . Model ): f1 = models . CharField ( max_length = 10 ) f2 = models . CharField ( max_length ...
https://man.plustar.jp/django/ref/models/querysets.html - [similar]
クエリを作成する — Django 4.0.6 ドキュメント 6024
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... og ( models . Model ): name = models . CharField ( max_length = 100 ) tagline = models . TextField () def ... or ( models . Model ): name = models . CharField ( max_length = 200 ) email = models . EmailField () def ... models . CASCADE ) headline = models . CharField ( max_length = 255 ) body_text = models . TextField () p ... og ( models . Model ): name = models . CharField ( max_length = 200 ) data = models . JSONField ( null = ...
https://man.plustar.jp/django/topics/db/queries.html - [similar]
django.core.exceptions — Django 4.0.6 ドキュメント 5973
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... GET or POST request exceeded settings.DATA_UPLOAD_MAX_NUMBER_FIELDS. """ pass class RequestDataTooBig ( ... ng any file uploads) exceeded settings.DATA_UPLOAD_MAX_MEMORY_SIZE. """ pass [ドキュメント] class Request ...
https://man.plustar.jp/django/_modules/django/core/exceptions.html - [similar]
Django 1.10 リリースノート — Django 4.0.6 ドキュメント 5973
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... f its proxies in both cases. AbstractUser.username max_length increased to 150 ¶ A migration for django.c ... UserCreationForm ): username = forms . CharField ( max_length = 30 , help_text = 'Required. 30 characters ... service 攻撃を緩和することができます。 DATA_UPLOAD_MAX_MEMORY_SIZE limits the size that a request body ma ... uploads don't count toward this limit. DATA_UPLOAD_MAX_NUMBER_FIELDS は、パースされる GET/POST パラメータ ...
https://man.plustar.jp/django/releases/1.10.html - [similar]
Django 3.1 release notes — Django 4.0.6 ドキュメント 5973
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ils on supported browsers. AbstractUser.first_name max_length increased to 150 ¶ A migration for django.c ... UserChangeForm ): first_name = forms . CharField ( max_length = 30 , required = False ) 管理サイトでユーザ ... che_page() decorator now takes precedence over the max-age directive from the Cache-Control header. Provi ... trib.admin browser support AbstractUser.first_name max_length increased to 150 その他 Features deprecated ...
https://man.plustar.jp/django/releases/3.1.html - [similar]
Django 3.2 release notes — Django 4.0.6 ドキュメント 5973
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... odels . Model ): first_name = models . CharField ( max_length = 255 ) last_name = models . CharField ( ma ... ts. django.contrib.contenttypes ¶ The new absolute_max argument for generic_inlineformset_factory() allow ... s customizing the maximum number of forms that can be instantiated when ... supplying POST data. See Limiting the maximum number of instantiated forms for more details. ...
https://man.plustar.jp/django/releases/3.2.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT