検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 65 for migration (0.023 sec.)
マイグレーション — Django 4.0.6 ドキュメント 13383
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... | up | next » マイグレーション ¶ マイグレーション (Migrations) は、Django でモデルに対して行った変更 (フィールド ... を適用したり、適用をキャンセルするのに使います。 makemigrations は、モデルに対して行った変更をもとに、新しいマイグ ... マイグレーションに対応する SQL 文を表示します。 showmigrations は、プロジェクトのマイグレーションとそのステータス ... に対するバージョン管理システムのようなものです。 makemigrations はモデルの変更点を1つのマイグレーションファイルに ...
https://man.plustar.jp/django/topics/migrations.html - [similar]
How to create database migrations — Django 4.0.6 ドキュメント 13240
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... es « previous | up | next » How to create database migrations ¶ このドキュメントでは、遭遇する可能性のあるいくつ ... you may need to figure out whether or not to run a migration against a particular database. For example, you ma ... y want to only run a migration on a particular database. In order to do that you ... .connection.alias attribute: from django.db import migrations def forwards ( apps , schema_editor ): if schema_ ...
https://man.plustar.jp/django/howto/writing-migrations.html - [similar]
Database migration operations — Django 4.0.6 ドキュメント 10835
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Index | Modules « previous | up | next » Database migration operations ¶ All of these operations are available ... stgres.operations module. Creating extension using migrations ¶ You can create a PostgreSQL extension in your d ... atabase using a migration file. This example creates an hstore extension, bu ... ld operation that involves HStoreField by adding a migration with the HStoreExtension operation. For example: f ...
https://man.plustar.jp/django/ref/contrib/postgres/operations.html - [similar]
Django 1.7.2 release notes — Django 4.0.6 ドキュメント 10019
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ed to the latest release (1.9.0). Bugfixes ¶ Fixed migration's renaming of auto-created many-to-many tables whe ... n changing Meta.db_table ( #23630 ). Fixed a migration crash when adding an explicit id field to a model ... er. Fixed MySQL 5.6+ crash with GeometryField s in migrations ( #23719 ). Fixed a migration crash when removing ... tialization on SpatiaLite 4.1+ ( #23152 ). Fixed a migration crash that prevented changing a nullable field wit ...
https://man.plustar.jp/django/releases/1.7.2.html - [similar]
マイグレーション操作 — Django 4.0.6 ドキュメント 9261
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ション を記述する事もできます。 If you need an empty migration file to write your own Operation objects into, use ... python manage.py makemigrations --empty yourappname , but be aware that manually ... adding schema-altering operations can confuse the migration autodetector and make resulting runs of makemigrat ... ct code. Django が提供するコア機能は全て django.db.migrations.operations モジュールから利用できます。 より入門的 ...
https://man.plustar.jp/django/ref/migration-operations.html - [similar]
django-admin と manage.py — Django 4.0.6 ドキュメント 9218
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... lly running it, so you can customize it or use the migrations framework. dbshell ¶ django-admin dbshell ¶ Runs ... post-synchronization handlers. The table of which migrations have been applied is not cleared. If you would ra ... ther start from an empty database and re-run all migrations, you should drop and recreate the database and th ... コマンドをカスタマイズする を参照してください。 makemigrations ¶ django-admin makemigrations [app_label [app_lab ...
https://man.plustar.jp/django/ref/django-admin.html - [similar]
Django 1.7.4 release notes — Django 4.0.6 ドキュメント 8831
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... .4 fixes several bugs in 1.7.3. Bugfixes ¶ Fixed a migration crash when unapplying contrib.contenttypes 's or c ... ontrib.auth 's first migration ( #24075 ). Made the migration's RenameModel opera ... rename ManyToManyField tables ( #24135 ). Fixed a migration crash on MySQL when migrating from a OneToOneField ... 7.3 release notes 関連キーワード release , notes , migration , Fixed , Bugfixes , from , ManyToManyField , cont ...
https://man.plustar.jp/django/releases/1.7.4.html - [similar]
Django 1.8.1 リリースノート — Django 4.0.6 ドキュメント 8058
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... bugs in 1.8 and includes some optimizations in the migrations framework. Bugfixes ¶ Added support for serializi ... ng timedelta objects in migrations ( #24566 ). Restored proper parsing of the testse ... anslations are deactivated ( #24569 ). Fixed squashmigrations command when using SeparateDatabaseAndState ( #24 ... not support fractional seconds ( #24584 ). Fixed a migration crash when altering ManyToManyField s ( #24513 ). ...
https://man.plustar.jp/django/releases/1.8.1.html - [similar]
Signals — Django 4.0.6 ドキュメント 7972
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... database on which a command will operate. plan The migration plan that is going to be used for the migration ru ... tuples with the first item being the instance of a migration class and the second item showing if the migration ... pps containing the state of the project before the migration run. It should be used instead of the global apps ... grate ¶ Sent at the end of the migrate (even if no migrations are run) and flush commands. It's not emitted for ...
https://man.plustar.jp/django/ref/signals.html - [similar]
Installing PostGIS — Django 4.0.6 ドキュメント 7872
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ng the migrate process. An alternative is to use a migration operation in your project: from django.contrib.pos ... tions import CreateExtension from django.db import migrations class Migration ( migrations . Migration ): opera ... an install the extension using the CreateExtension migration operation, or directly by running CREATE EXTENSION ...
https://man.plustar.jp/django/ref/contrib/gis/install/postgis.html - [similar]
PREV 1 2 3 4 5 6 7 NEXT