検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 55 for old (0.026 sec.)
Porting your apps from Django 0.96 to 1.0 — Django 4.0.6 ドキュメント 12625
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... .py file with all the changes you'll need to make: Old (0.96) models.py : class Author ( models . Model ) ... ve all been moved to admin.py . Here's an example: Old (0.96): class Parent ( models . Model ): ... class ... details. Simplify fields , or use fieldsets ¶ The old fields syntax was quite confusing, and has been si ... mplified. The old syntax still works, but you'll need to use fieldse ...
https://man.plustar.jp/django/releases/1.0-porting-guide.html - [similar]
How to create database migrations — Django 4.0.6 ドキュメント 11945
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ンにデータを移動できます。 If you plan to remove the old app later, you'll need to set the dependencies pro ... perty based on whether or not the old app is installed. Otherwise, you'll have missing d ... ependencies once you uninstall the old app. Similarly, you'll need to catch LookupError i ... ps.get_model() call that retrieves models from the old app. This approach allows you to deploy your proje ...
https://man.plustar.jp/django/howto/writing-migrations.html - [similar]
Django 0.96 リリースノート — Django 4.0.6 ドキュメント 11072
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... arate, backwards-compatible backend, called "mysql_old", has been added to Django. To use this backend, c ... ENGINE = "mysql" to this: DATABASE_ENGINE = "mysql_old" However, we strongly encourage MySQL users to upg ... version of MySQLdb as soon as possible, The "mysql_old" backend is provided only to ease this transition, ... backend, and will not be made available for "mysql_old". データベース名の制約変更 ¶ The format of the con ...
https://man.plustar.jp/django/releases/0.96.html - [similar]
SchemaEditor — Django 4.0.6 ドキュメント 10599
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... abaseSchemaEditor. alter_unique_together ( model , old_unique_together , new_unique_together ) ¶ Changes ... tabaseSchemaEditor. alter_index_together ( model , old_index_together , new_index_together ) ¶ Changes a ... BaseDatabaseSchemaEditor. alter_db_table ( model , old_db_table , new_db_table ) ¶ Renames the model's ta ... ble from old_db_table to new_db_table . alter_db_tablespace() ¶ ...
https://man.plustar.jp/django/ref/schema-editor.html - [similar]
Django 1.2 リリースノート — Django 4.0.6 ドキュメント 10008
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... t to be aware of when upgrading from Django 1.1 or older versions. オーバービュー ¶ Django 1.2 introduces ... ion framework is not backwards-compatible with the old system. Users of the old system will not be affect ... ed until the old system is removed in Django 1.4. However, upgradin ... o docs. Please refer to the docs for Django 1.3 or older to find these instructions. CsrfViewMiddleware i ...
https://man.plustar.jp/django/releases/1.2.html - [similar]
The redirects app — Django 4.0.6 ドキュメント 9047
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ur database. This is a lookup table with site_id , old_path and new_path fields. The RedirectFallbackMidd ... cifically, it checks for a redirect with the given old_path with a site ID that corresponds to the SITE_I ... edirect . objects . create ( ... site_id = 1 , ... old_path = '/contact-us/' , ... new_path = '/contact/' ... t. >>> Redirect . objects . filter ( site_id = 1 , old_path = '/contact-us/' ) . delete () (1, {'redirect ...
https://man.plustar.jp/django/ref/contrib/redirects.html - [similar]
Django 1.7 release notes — Django 4.0.6 ドキュメント 8944
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... t to be aware of when upgrading from Django 1.6 or older versions. We've begun the deprecation process fo ... heck management command. This command replaces the older validate management command. New Prefetch object ... eUser , changing a user's password now invalidates old sessions if the django.contrib.auth.middleware.Ses ... res during the phase of migrate which emulates the old syncdb behavior, but any new apps will not have th ...
https://man.plustar.jp/django/releases/1.7.html - [similar]
Django 1.6 release notes — Django 4.0.6 ドキュメント 8751
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... t to be aware of when upgrading from Django 1.5 or older versions. We've also dropped some features, whic ... y one query for updating an existing row while the old algorithm needed two. See Model.save() for more de ... ons.select_on_save flag to force saving to use the old algorithm. マイナーな機能 ¶ Authentication backend ... ce proxy models. The default is True to retain the old behavior. The LocaleMiddleware now stores the acti ...
https://man.plustar.jp/django/releases/1.6.html - [similar]
Django 1.8 リリースノート — Django 4.0.6 ドキュメント 8751
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... vored to maintain backwards-compatibility with the old API endpoint where possible. However, API endpoint ... topic guide and check the upgrade instructions in older versions of the documentation. Security enhancem ... backend no longer defines the connection_persists_old_columns feature as True . Instead, Oracle will now ... ed form_class defaults to get_form_class() . Placeholders in ModelFormMixin.success_url now support the P ...
https://man.plustar.jp/django/releases/1.8.html - [similar]
Django 1.4 release notes — Django 4.0.6 ドキュメント 8648
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... t to be aware of when upgrading from Django 1.3 or older versions. We've also dropped some features, whic ... to Django 1.4 should update their manage.py . (The old-style manage.py will continue to work as before un ... ngo will be careful to maintain compatibility with older browsers, this change means that you can use any ... contrib.auth.hashers module. Importing it from the old location will still work, but you should update yo ...
https://man.plustar.jp/django/releases/1.4.html - [similar]
PREV 1 2 3 4 5 6 NEXT