検索

phrase: max: clip:
target: order:
Results of 81 - 90 of about 172 for create (0.035 sec.)
Constraints reference — Django 4.0.6 ドキュメント 5317
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nts reference ¶ The classes defined in this module create database constraints. They are added in the model ... int ¶ class CheckConstraint ( * , check , name ) ¶ Creates a check constraint in the database. check ¶ Check ... rable = None , include = None , opclasses = () ) ¶ Creates a unique constraint in the database. expressions ... 'category' , name = 'unique_lower_name_category' ) creates a unique constraint on the lowercased value of th ...
https://man.plustar.jp/django/ref/models/constraints.html - [similar]
Django 1.8.3 リリースノート — Django 4.0.6 ドキュメント 5317
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... previous versions of Django, the session backends created a new empty record in the session storage anytime ... ion record. This could allow an attacker to easily create many new session records simply by sending repeate ... s to be evicted. The built-in session backends now create a session record only if the session is actually m ... odified; empty session records are not created. Thus this potential DoS is now only possible if ...
https://man.plustar.jp/django/releases/1.8.3.html - [similar]
FAQ: データベースとモデル — Django 4.0.6 ドキュメント 5261
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... MyISAM ストレージエンジンを指定するといったような CREATE TABLE 文のデータベース固有のカスタマイズを追加する ... MyISAM ストレージエンジンを指定するといったような CREATE TABLE 文のデータベース固有のカスタマイズを追加する ...
https://man.plustar.jp/django/faq/models.html - [similar]
Django の admin サイト — Django 4.0.6 ドキュメント 5261
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ed it into ( /admin/ , by default). If you need to create a user to login with, use the createsuperuser comm ... tion_text フィールドによりフィルタされ、また``date_created`` フィールドにより並べ替えられます: class Questio ... nAdmin ( admin . ModelAdmin ): ordering = [ 'date_created' ] search_fields = [ 'question_text' ] class Choi ... many-to-many relation. This model is automatically created by Django when you define a many-to-many field. S ...
https://man.plustar.jp/django/ref/contrib/admin/index.html - [similar]
django-admin と manage.py — Django 4.0.6 ドキュメント 5261
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... まとめます。 In addition, manage.py is automatically created in each Django project. It does the same thing as ... django-admin compilemessages ¶ Compiles .po files created by makemessages to .mo files for use with the bui ... -- ignore = cache -- ignore = outdated /*/ locale createcachetable ¶ django-admin createcachetable ¶ Create ... s the database in which the cache table(s) will be created. Defaults to default . --dry-run ¶ Prints the SQL ...
https://man.plustar.jp/django/ref/django-admin.html - [similar]
マイグレーション操作 — Django 4.0.6 ドキュメント 5261
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... スのマイグレーション を参照ください。 スキーマ操作 ¶ CreateModel ¶ class CreateModel ( name , fields , options ... a default value that can be used to populate the recreated column. If the field is not nullable and does not ... AddIndex ¶ class AddIndex ( model_name , index ) ¶ Creates an index in the database table for the model with ... class AddConstraint ( model_name , constraint ) ¶ Creates a constraint in the database table for the model ...
https://man.plustar.jp/django/ref/migration-operations.html - [similar]
Djangoにおけるパスワード管理 — Django 4.0.6 ドキュメント 5261
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... f iterations used by the default PBKDF2 algorithm: Create a subclass of django.contrib.auth.hashers.PBKDF2Pa ... auth.hashers module provides a set of functions to create and validate hashed passwords. You can use them in ... ( password , salt = None , hasher = 'default' ) ¶ Creates a hashed password in the format used by this appl ... h means no validators are applied. In new projects created with the default startproject template, a set of ...
https://man.plustar.jp/django/topics/auth/passwords.html - [similar]
データベースのトランザクション — Django 4.0.6 ドキュメント 5261
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... on @transaction . atomic def viewfunc ( request ): create_parent () try : with transaction . atomic (): gene ... e queries in add_children() , and the changes from create_parent() are still there and bound to the same tra ... nsaction when entering the outermost atomic block; creates a savepoint when entering an inner atomic block; ... ith transaction . atomic (): # Inner atomic block, create a savepoint transaction . on_commit ( bar ) # foo( ...
https://man.plustar.jp/django/topics/db/transactions.html - [similar]
Django FAQ よくある質問 — Django 4.0.6 ドキュメント 5204
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... MyISAM ストレージエンジンを指定するといったような CREATE TABLE 文のデータベース固有のカスタマイズを追加する ... go-admin 実行時の問題 その他 前のトピックへ How to create database migrations 次のトピックへ FAQ: 一般的な質 ...
https://man.plustar.jp/django/faq/index.html - [similar]
Unit tests — Django 4.0.6 ドキュメント 5204
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... uickstart ¶ First, fork Django on GitHub . Second, create and activate a virtual environment. If you're not ... base backends other than SQLite, however, you must create and provide your own test settings . For example, ... he database. That user needs permission to execute CREATE DATABASE so that the test database can be created. ...
https://man.plustar.jp/django/internals/contributing/writing-code/unit-tests.htm... - [similar]