検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 190 for new (0.058 sec.)
SchemaEditor — Django 4.0.6 ドキュメント 6866
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... seSchemaEditor. create_model ( model ) ¶ Creates a new table in the database for the provided model, alon ... er_unique_together ( model , old_unique_together , new_unique_together ) ¶ Changes a model's unique_toget ... raints from the model's table until they match the new value. alter_index_together() ¶ BaseDatabaseSchema ... lter_index_together ( model , old_index_together , new_index_together ) ¶ Changes a model's index_togethe ...
https://man.plustar.jp/django/ref/schema-editor.html - [similar]
Django 1.0 リリースノート — Django 4.0.6 ドキュメント 6866
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ect.com/wiki/BackwardsIncompatibleChanges . What's new in Django 1.0 ¶ A lot ! Since Django 0.96, we've m ... 00 lines of code. We've also added 40,000 lines of new documentation, and greatly improved what was alrea ... dy there. In fact, new documentation is one of our favorite features of D ... so we might as well start there. First, there's a new documentation site: https://docs.djangoproject.com ...
https://man.plustar.jp/django/releases/1.0.html - [similar]
The redirects app — Django 4.0.6 ドキュメント 6789
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... This is a lookup table with site_id , old_path and new_path fields. The RedirectFallbackMiddleware does a ... s to the SITE_ID setting. If it finds a match, and new_path is not empty, it redirects to new_path using ... orarily redirect instead. If it finds a match, and new_path is empty, it sends a 410 ("Gone") HTTP header ... ntrib.redirects.models import Redirect >>> # Add a new redirect. >>> redirect = Redirect . objects . crea ...
https://man.plustar.jp/django/ref/contrib/redirects.html - [similar]
多対一 (many-to-one) 関係 — Django 4.0.6 ドキュメント 6713
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ter Create an Article via the Reporter object: >>> new_article = r . article_set . create ( headline = "J ... nd story" , pub_date = date ( 2005 , 7 , 29 )) >>> new_article <Article: John's second story> >>> new_art ... icle . reporter <Reporter: John Smith> >>> new_article . reporter . id 1 Create a new article: >> ... > new_article2 = Article . objects . create ( headline = ...
https://man.plustar.jp/django/topics/db/examples/many_to_one.html - [similar]
Related objects reference — Django 4.0.6 ドキュメント 6680
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... hrough_defaults argument to specify values for the new intermediate model instance(s), if needed. You can ... through_defaults = None , ** kwargs ) ¶ Creates a new object, saves it and puts it in the related object ... set. Returns the newly created object: >>> b = Blog . objects . get ( i ... ter blog to create() . Django figures out that the new Entry object's blog field should be set to b . Use ...
https://man.plustar.jp/django/ref/models/relations.html - [similar]
How to create database migrations — Django 4.0.6 ドキュメント 6571
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e auto-generated migration (the first of the three new files) to the last migration, change AddField to A ... てみましょう: myapp/migrations/0124_move_old_app_to_new_app.py ¶ from django.apps import apps as global_ap ... ookupError : # The old app isn't installed. return NewModel = apps . get_model ( 'new_app' , 'NewModel' ) ... NewModel . objects . bulk_create ( NewModel ( new_attr ...
https://man.plustar.jp/django/howto/writing-migrations.html - [similar]
Django 1.2.4 release notes — Django 4.0.6 ドキュメント 6571
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... g or targeting Django 1.2. For full details on the new features, backwards incompatibilities, and depreca ... format of these lookup arguments to invent useful new filters on the fly by manipulating the querystring ... the prior ability to insert arbitrary lookups. One new feature ¶ Ordinarily, a point release would not in ... clude new features, but in the case of Django 1.2.4, we have ...
https://man.plustar.jp/django/releases/1.2.4.html - [similar]
Django 1.1.2 リリースノート — Django 4.0.6 ドキュメント 6396
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... g or targeting Django 1.1. For full details on the new features, backwards incompatibilities, and depreca ... ses and manipulates cookie values client-side. One new feature ¶ Ordinarily, a point release would not in ... clude new features, but in the case of Django 1.1.2, we have ... (CSRF) attacks. This feature requires the use of a new csrf_token template tag in all forms that Django r ...
https://man.plustar.jp/django/releases/1.1.2.html - [similar]
Django 1.2.2 release notes — Django 4.0.6 ドキュメント 6396
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... g or targeting Django 1.2. For full details on the new features, backwards incompatibilities, and depreca ... .2 branch, see the Django 1.2 リリースノート . One new feature ¶ Ordinarily, a point release would not in ... clude new features, but in the case of Django 1.2.2, we have ... ible to do so. 目次 Django 1.2.2 release notes One new feature 前のトピックへ Django 1.2.3 release notes ...
https://man.plustar.jp/django/releases/1.2.2.html - [similar]
Django 1.9 リリースノート — Django 4.0.6 ドキュメント 6396
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... アップデートするときは、 How to upgrade Django to a newer version ガイドに従ってください。 Python バージョ ... stractBaseUser and BaseUserManager were moved to a new django.contrib.auth.base_user module so that they ... kinds of iterables, not only list and tuples. The new PersistentRemoteUserMiddleware makes it possible t ... 。spatial querying はまだサポートしていません。 The new GDALRaster.warp() method allows warping a raster b ...
https://man.plustar.jp/django/releases/1.9.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT