検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 78 for remove (0.006 sec.)
SchemaEditor — Django 4.0.6 ドキュメント 14794
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ( model , index ) ¶ Adds index to model 's table. remove_index() ¶ BaseDatabaseSchemaEditor. remove_index ( ... model , index ) ¶ Removes index from model 's table. add_constraint() ¶ Bas ... constraint ) ¶ Adds constraint to model 's table. remove_constraint() ¶ BaseDatabaseSchemaEditor. remove_co ... nstraint ( model , constraint ) ¶ Removes constraint from model 's table. alter_unique_toge ...
https://man.plustar.jp/django/ref/schema-editor.html - [similar]
Related objects reference — Django 4.0.6 ドキュメント 12259
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... bles as values in the through_defaults dictionary. remove ( * objs , bulk = True ) ¶ Removes the specified m ... y . objects . get ( id = 234 ) >>> b . entry_set . remove ( e ) # Disassociates Entry e from Blog b. Similar ... in the example above to perform the update. Using remove() with a many-to-many relationship, however, will ... ionship is deleted. For many-to-many relationships remove() accepts either model instances or field values, ...
https://man.plustar.jp/django/ref/models/relations.html - [similar]
PostgreSQL specific form fields and widgets — Django 4.0.6 ドキュメント 10510
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ield ¶ class SplitArrayField ( base_field , size , remove_trailing_nulls = False ) ¶ This field handles arra ... number of times the underlying field will be used. remove_trailing_nulls ¶ By default, this is set to False ... t. If the underlying field has required=True , but remove_trailing_nulls is True , then null values are only ... eld ( IntegerField ( required = True ), size = 3 , remove_trailing_nulls = False ) [ '1' , '2' , '3' ] # -> ...
https://man.plustar.jp/django/ref/contrib/postgres/forms.html - [similar]
データベースアクセスの最適化 — Django 4.0.6 ドキュメント 9297
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ordering ( Meta.ordering ) and you don't need it, remove it on a QuerySet by calling order_by() with no par ... , so make sure it's appropriate for your use case. Remove in bulk ¶ When removing objects from ManyToManyFie ... lds , use remove() with multiple objects to reduce the number of SQ ... L queries. For example: my_band . members . remove ( me , my_friend ) ...is preferable to: my_band . ...
https://man.plustar.jp/django/topics/db/optimization.html - [similar]
Porting your apps from Django 0.96 to 1.0 — Django 4.0.6 ドキュメント 9077
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ke sure you use Unicode ( u'foo' ) in that method. Remove prepopulated_from ¶ Remove the prepopulated_from a ... elow, for more details about changes to the admin. Remove core ¶ Remove the core argument from your model fi ... ntil you get to the admin section, below. For now, remove all references to core . Replace class Admin: with ... admin.py ¶ Remove all your inner class Admin declarations from your ...
https://man.plustar.jp/django/releases/1.0-porting-guide.html - [similar]
Django 1.7 release notes — Django 4.0.6 ドキュメント 9077
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... the end of their deprecation process and have been removed . Python バージョン間の互換性 ¶ Django 1.7 requir ... iscover() when Django starts. You can consequently remove this line from your URLconf. Django imports all ap ... all the method on the superclass and simply add or remove extra arguments. This also means that all argument ... locking failed silently. That dependency has been removed, and file locking is now implemented natively on ...
https://man.plustar.jp/django/releases/1.7.html - [similar]
Signals — Django 4.0.6 ドキュメント 8746
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ne or more objects are added to the relation. "pre_remove" Sent before one or more objects are removed from ... the relation. "post_remove" Sent after one or more objects are removed from t ... model The class of the objects that are added to, removed from or cleared from the relation. pk_set For the ... r to avoid a database IntegrityError . For the pre_remove and post_remove actions, this is a set of primary ...
https://man.plustar.jp/django/ref/signals.html - [similar]
django.dispatch.dispatcher — Django 4.0.6 ドキュメント 7534
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... r ) weakref . finalize ( receiver_object , self . _remove_receiver ) with self . lock : self . _clear_dead_r ... isconnect need not be called. The receiver will be removed from dispatch automatically. Arguments: receiver ... append ( receiver ) return non_weak_receivers def _remove_receiver ( self , receiver = None ): # Mark that t ... that doing the cleanup here isn't a good # idea, _remove_receiver() will be called as side effect of garbag ...
https://man.plustar.jp/django/_modules/django/dispatch/dispatcher.html - [similar]
Django 1.1 リリースノート — Django 4.0.6 ドキュメント 7534
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ests should be rewritten to correct the test case. Removed SetRemoteAddrFromForwardedFor middleware ¶ For co ... le not directly a security issue, we've decided to remove this middleware with the Django 1.1 release. It ha ... h is: Examine the code as it existed before it was removed . Verify that it works correctly with your upstre ... lude ( admin . site . urls )), You should begin to remove use of this feature from your code immediately. Ad ...
https://man.plustar.jp/django/releases/1.1.html - [similar]
Django 1.5 release notes — Django 4.0.6 ドキュメント 7424
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... re using {% load url from future %} you can simply remove that line under Django 1.5 Python バージョン間の互 ... e deprecation plan for any features that have been removed. If you haven't updated your code within the depr ... mented order was restored. You may want to add (or remove) the reversed keyword when you're iterating on dat ... behavior when it receives the requests, so it was removed in Django 1.5. If you were using the data paramet ...
https://man.plustar.jp/django/releases/1.5.html - [similar]
PREV 1 2 3 4 5 6 7 8 NEXT