検索

phrase: max: clip:
target: order:
Results of 81 - 90 of about 177 for models (0.046 sec.)
Django 2.2.5 リリースノート — Django 4.0.6 ドキュメント 5328
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ¶ Relaxed the system check added in Django 2.2 for models to reallow use of the same db_table by multiple mo ... Django 2.2.4 リリースノート 関連キーワード Fixed , models , トピック , previous , up , next , when , Bugfixe ...
https://man.plustar.jp/django/releases/2.2.5.html - [similar]
Generic editing ビュー — Django 4.0.6 ドキュメント 5272
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ジの例のいくつかは、 Author モデルが下記の通り myapp/models.py 内で定義されているものと見なしています。 from d ... jango.db import models from django.urls import reverse class Author ( mod ... els . Model ): name = models . CharField ( max_length = 200 ) def get_absolute_ ... go.views.generic.edit import CreateView from myapp.models import Author class AuthorCreateView ( CreateView ...
https://man.plustar.jp/django/ref/class-based-views/generic-editing.html - [similar]
多対多 (many-to-many) 関係 — Django 4.0.6 ドキュメント 5217
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... as multiple Article objects: from django.db import models class Publication ( models . Model ): title = mode ... tr__ ( self ): return self . title class Article ( models . Model ): headline = models . CharField ( max_len ... gth = 100 ) publications = models . ManyToManyField ( Publication ) class Meta : ord ...
https://man.plustar.jp/django/topics/db/examples/many_to_many.html - [similar]
Djangoの認証システムを使用する — Django 4.0.6 ドキュメント 5139
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 数を利用することです。 >>> from django.contrib.auth.models import User >>> user = User . objects . create_use ... 変更することもできます: >>> from django.contrib.auth.models import User >>> u = User . objects . get ( usernam ... 事はほぼ有りません。 グループ ¶ django.contrib.auth.models.Group モデルはユーザーを分類する一般的な方法で、対 ... ish は下記のように作成する事ができます: from myapp.models import BlogPost from django.contrib.auth.models im ...
https://man.plustar.jp/django/topics/auth/default.html - [similar]
django.db.utils — Django 4.0.6 ドキュメント 5116
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... model_name , model = model , ) def get_migratable_models ( self , app_config , db , include_auto_created = ... False ): """Return app models allowed to be migrated on provided db.""" models = ... app_config . get_models ( include_auto_created = include_auto_created ) re ... turn [ model for model in models if self . allow_migrate_model ( db , model )] クイ ...
https://man.plustar.jp/django/_modules/django/db/utils.html - [similar]
Django 0.95 リリースノート — Django 4.0.6 ドキュメント 5116
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... retrieving objects from the database. User-defined models, functions and constants now appear in the module ... everything was magically transferred to the django.models.* namespace.) Some optional applications, such as ... e it easier to add custom table-level functions to models, through a new "Manager" API. It's now possible to ... natural to override save() and delete() methods on models, rather than needing to hook into the pre_save() a ...
https://man.plustar.jp/django/releases/0.95.html - [similar]
Django 2.0.1 リリースノート — Django 4.0.6 ドキュメント 5116
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... orrect class-based model index name generation for models with quoted db_table ( #28876 ). Fixed incorrect f ... oreign key constraint name for models with quoted db_table ( #28876 ). Fixed a regressio ... スノート 関連キーワード 修正 , クラッシュ , Fixed , models , 変換 , ted , update , incorrect , values , regre ...
https://man.plustar.jp/django/releases/2.0.1.html - [similar]
Model index reference — Django 4.0.6 ドキュメント 5083
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... built-in indexes Indexes are defined in django.db.models.indexes , but for convenience they're imported int ... o django.db.models . The standard convention is to use from django.db ... import models and refer to the indexes as models.<IndexClass> . ...
https://man.plustar.jp/django/ref/models/indexes.html - [similar]
Django 1.7.2 release notes — Django 4.0.6 ドキュメント 5083
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... n SQLite ( #23702 ). Added a warning for duplicate models when a module is reloaded. Previously a RuntimeErr ... or was raised every time two models clashed in the app registry. ( #23621 ). Prevented ... he app registry is fully populated when unpickling models. When an external script (like a queueing infrastr ... ucture) reloads pickled models, it could crash with an AppRegistryNotReady except ...
https://man.plustar.jp/django/releases/1.7.2.html - [similar]
Django 2.1 リリースノート — Django 4.0.6 ドキュメント 5061
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ます。 This allows giving users read-only access to models in the admin. ModelAdmin.has_view_permission() is ... w inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses ... migrations may be loaded from .pyc files. モデル ¶ Models can now use __init_subclass__() from PEP 487 . A B ... ccess to the changelist and detail pages for those models. If this is unwanted, you must change your custom ...
https://man.plustar.jp/django/releases/2.1.html - [similar]