Results of 1 - 10 of about 572 for Table (0.065 sec.)
- Model Meta options — Django 4.0.6 ドキュメント 12658
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
; }); })(jQuery); Django 4.0.6 ドキュメント Home | Table of contents | Index | Modules « previous | up | ne ...
jects' , to use for the model's _base_manager . db_table ¶ Options. db_table ¶ The name of the database tab ...
le to use for the model: db_table = 'music_album' Table names ¶ To save you time, Dj ...
ngo automatically derives the name of the database table from the name of your model class and the app that ...
-
https://man.plustar.jp/django/ref/models/options.html
- [similar]
- SchemaEditor — Django 4.0.6 ドキュメント 12582
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
; }); })(jQuery); Django 4.0.6 ドキュメント Home | Table of contents | Index | Modules « previous | up | ne ...
hemaEditor. create_model ( model ) ¶ Creates a new table in the database for the provided model, along with ...
Editor. delete_model ( model ) ¶ Drops the model's table in the database along with any unique constraints ...
d_index ( model , index ) ¶ Adds index to model 's table. remove_index() ¶ BaseDatabaseSchemaEditor. remove ...
-
https://man.plustar.jp/django/ref/schema-editor.html
- [similar]
- データベース — Django 4.0.6 ドキュメント 10125
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
; }); })(jQuery); Django 4.0.6 ドキュメント Home | Table of contents | Index | Modules « previous | up | ne ...
If you need a higher isolation level such as REPEATABLE READ or SERIALIZABLE , set it in the OPTIONS part ...
ard to avoid reusing a value that's already in the table. The sqlsequencereset management command generates ...
upport , use mysql_tzinfo_to_sql to load time zone tables into the MySQL database. This needs to be done ju ...
-
https://man.plustar.jp/django/ref/databases.html
- [similar]
- How to create database migrations — Django 4.0.6 ドキュメント 7221
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
; }); })(jQuery); Django 4.0.6 ドキュメント Home | Table of contents | Index | Modules « previous | up | ne ...
gration that adds a unique non-nullable field to a table with existing rows will raise an error because the ...
cases such as performing data migrations on large tables, you may want to prevent a migration from running ...
el, the default migration will delete the existing table and create a new one, losing the existing relation ...
-
https://man.plustar.jp/django/howto/writing-migrations.html
- [similar]
- フォームセット (Formset) — Django 4.0.6 ドキュメント 6624
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
; }); })(jQuery); Django 4.0.6 ドキュメント Home | Table of contents | Index | Modules « previous | up | ne ...
() >>> for form in formset : ... print ( form . as_table ()) <tr><th><label for="id_form-0-title">Title:</l ...
]) >>> for form in formset : ... print ( form . as_table ()) <tr><th><label for="id_form-0-title">Title:</l ...
() >>> for form in formset : ... print ( form . as_table ()) <tr><th><label for="id_form-0-title">Title:</l ...
-
https://man.plustar.jp/django/topics/forms/formsets.html
- [similar]
- Django 1.11.9 リリースノート — Django 4.0.6 ドキュメント 6472
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
; }); })(jQuery); Django 4.0.6 ドキュメント Home | Table of contents | Index | Modules « previous | up | ne ...
el index name generation for models with quoted db_table ( #28876 ). Fixed incorrect foreign key constraint ...
name for models with quoted db_table ( #28876 ). Fixed a regression in caching of a Gen ...
d model instance uses more than one level of multi-table inheritance ( #28856 ). 目次 Django 1.11.9 リリース ...
-
https://man.plustar.jp/django/releases/1.11.9.html
- [similar]
- フォーム API — Django 4.0.6 ドキュメント 6397
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
; }); })(jQuery); Django 4.0.6 ドキュメント Home | Table of contents | Index | Modules « previous | up | ne ...
= False ) ¶ Returns the errors as a dictionary suitable for serializing to JSON. Form.errors.as_json() ret ...
ドは今ある状態から変更することができます: >>> f . as_table () . split ( ' \n ' )[ 0 ] '<tr><th>Name:</th><td> ...
fields [ 'name' ] . label = "Username" >>> f . as_table () . split ( ' \n ' )[ 0 ] '<tr><th>Username:</th> ...
-
https://man.plustar.jp/django/ref/forms/api.html
- [similar]
- Tablespaces — Django 4.0.6 ドキュメント 6253
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
; }); })(jQuery); Django 4.0.6 ドキュメント Home | Table of contents | Index | Modules « previous | up | ne ...
xt » Tablespaces ¶ A common paradigm for optimizing performan ...
ce in database systems is the use of tablespaces to organize disk layout. 警告 Django does no ...
t create the tablespaces for you. Please refer to your database engin ...
-
https://man.plustar.jp/django/topics/db/tablespaces.html
- [similar]
- モデルフィールドリファレンス — Django 4.0.6 ドキュメント 6026
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
; }); })(jQuery); Django 4.0.6 ドキュメント Home | Table of contents | Index | Modules « previous | up | ne ...
you're probably better off using a proper database table with a ForeignKey . choices is meant for static da ...
le name, or label . The label can be a lazy translatable string. Thus, in most cases, the member value will ...
ate parts of the enumeration. Use .choices as a suitable value to pass to choices in a field definition. 警 ...
-
https://man.plustar.jp/django/ref/models/fields.html
- [similar]
- QuerySet API リファレンス — Django 4.0.6 ドキュメント 5799
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
; }); })(jQuery); Django 4.0.6 ドキュメント Home | Table of contents | Index | Modules « previous | up | ne ...
result rows. However, if your query spans multiple tables, it's possible to get duplicate results when a Qu ...
in a key and value for every field in the database table. 実装例: >>> Blog . objects . values () <QuerySet ...
sing a Time Zone File ). MySQL: load the time zone tables with mysql_tzinfo_to_sql . none() ¶ none () ¶ Cal ...
-
https://man.plustar.jp/django/ref/models/querysets.html
- [similar]