2014-02-13 02:53:35 +08:00
|
|
|
====================
|
|
|
|
Migration Operations
|
|
|
|
====================
|
|
|
|
|
2014-04-28 03:05:25 +08:00
|
|
|
.. module:: django.db.migrations.operations
|
|
|
|
|
|
|
|
Migration files are composed of one or more ``Operation``\s, objects that
|
2014-02-13 02:53:35 +08:00
|
|
|
declaratively record what the migration should do to your database.
|
|
|
|
|
2014-04-28 03:05:25 +08:00
|
|
|
Django also uses these ``Operation`` objects to work out what your models
|
2014-02-13 02:53:35 +08:00
|
|
|
looked like historically, and to calculate what changes you've made to
|
|
|
|
your models since the last migration so it can automatically write
|
|
|
|
your migrations; that's why they're declarative, as it means Django can
|
|
|
|
easily load them all into memory and run through them without touching
|
|
|
|
the database to work out what your project should look like.
|
|
|
|
|
2014-04-28 03:05:25 +08:00
|
|
|
There are also more specialized ``Operation`` objects which are for things like
|
2014-02-13 02:53:35 +08:00
|
|
|
:ref:`data migrations <data-migrations>` and for advanced manual database
|
2014-04-28 03:05:25 +08:00
|
|
|
manipulation. You can also write your own ``Operation`` classes if you want
|
2014-02-13 02:53:35 +08:00
|
|
|
to encapsulate a custom change you commonly make.
|
|
|
|
|
2014-04-28 03:05:25 +08:00
|
|
|
If you need an empty migration file to write your own ``Operation`` objects
|
2014-02-13 02:53:35 +08:00
|
|
|
into, just use ``python manage.py makemigrations --empty yourappname``,
|
|
|
|
but be aware that manually adding schema-altering operations can confuse the
|
2014-04-28 03:05:25 +08:00
|
|
|
migration autodetector and make resulting runs of :djadmin:`makemigrations`
|
|
|
|
output incorrect code.
|
2014-02-13 02:53:35 +08:00
|
|
|
|
|
|
|
All of the core Django operations are available from the
|
|
|
|
``django.db.migrations.operations`` module.
|
|
|
|
|
|
|
|
Schema Operations
|
|
|
|
=================
|
|
|
|
|
|
|
|
CreateModel
|
|
|
|
-----------
|
|
|
|
|
2014-04-28 03:05:25 +08:00
|
|
|
.. class:: CreateModel(name, fields, options=None, bases=None)
|
2014-02-13 02:53:35 +08:00
|
|
|
|
|
|
|
Creates a new model in the project history and a corresponding table in the
|
|
|
|
database to match it.
|
|
|
|
|
|
|
|
``name`` is the model name, as would be written in the ``models.py`` file.
|
|
|
|
|
|
|
|
``fields`` is a list of 2-tuples of ``(field_name, field_instance)``.
|
|
|
|
The field instance should be an unbound field (so just ``models.CharField()``,
|
|
|
|
rather than a field takes from another model).
|
|
|
|
|
|
|
|
``options`` is an optional dictionary of values from the model's ``Meta`` class.
|
|
|
|
|
2014-03-01 00:44:03 +08:00
|
|
|
``bases`` is an optional list of other classes to have this model inherit from;
|
2014-02-13 02:53:35 +08:00
|
|
|
it can contain both class objects as well as strings in the format
|
|
|
|
``"appname.ModelName"`` if you want to depend on another model (so you inherit
|
|
|
|
from the historical version). If it's not supplied, it defaults to just
|
|
|
|
inheriting from the standard ``models.Model``.
|
|
|
|
|
|
|
|
DeleteModel
|
|
|
|
-----------
|
|
|
|
|
2014-04-28 03:05:25 +08:00
|
|
|
.. class:: DeleteModel(name)
|
2014-02-13 02:53:35 +08:00
|
|
|
|
|
|
|
Deletes the model from the project history and its table from the database.
|
|
|
|
|
|
|
|
RenameModel
|
|
|
|
-----------
|
|
|
|
|
2014-04-28 03:05:25 +08:00
|
|
|
.. class:: RenameModel(old_name, new_name)
|
2014-02-13 02:53:35 +08:00
|
|
|
|
|
|
|
Renames the model from an old name to a new one.
|
|
|
|
|
|
|
|
You may have to manually add
|
|
|
|
this if you change the model's name and quite a few of its fields at once; to
|
|
|
|
the autodetector, this will look like you deleted a model with the old name
|
|
|
|
and added a new one with a different name, and the migration it creates will
|
|
|
|
lose any data in the old table.
|
|
|
|
|
|
|
|
AlterModelTable
|
|
|
|
---------------
|
|
|
|
|
2014-04-28 03:05:25 +08:00
|
|
|
.. class:: AlterModelTable(name, table)
|
2014-02-13 02:53:35 +08:00
|
|
|
|
2014-04-28 03:05:25 +08:00
|
|
|
Changes the model's table name (the :attr:`~django.db.models.Options.db_table`
|
|
|
|
option on the ``Meta`` subclass).
|
2014-02-13 02:53:35 +08:00
|
|
|
|
|
|
|
AlterUniqueTogether
|
|
|
|
-------------------
|
|
|
|
|
2014-04-28 03:05:25 +08:00
|
|
|
.. class:: AlterUniqueTogether(name, unique_together)
|
2014-02-13 02:53:35 +08:00
|
|
|
|
2014-04-28 03:05:25 +08:00
|
|
|
Changes the model's set of unique constraints (the
|
|
|
|
:attr:`~django.db.models.Options.unique_together` option on the ``Meta``
|
|
|
|
subclass).
|
2014-02-13 02:53:35 +08:00
|
|
|
|
|
|
|
AlterIndexTogether
|
|
|
|
------------------
|
|
|
|
|
2014-04-28 03:05:25 +08:00
|
|
|
.. class:: AlterIndexTogether(name, index_together)
|
2014-02-13 02:53:35 +08:00
|
|
|
|
2014-04-28 03:05:25 +08:00
|
|
|
Changes the model's set of custom indexes (the
|
|
|
|
:attr:`~django.db.models.Options.index_together` option on the ``Meta``
|
|
|
|
subclass).
|
2014-02-13 02:53:35 +08:00
|
|
|
|
|
|
|
AddField
|
|
|
|
--------
|
|
|
|
|
2014-04-28 03:05:25 +08:00
|
|
|
.. class:: AddField(model_name, name, field, preserve_default=True)
|
2014-02-13 02:53:35 +08:00
|
|
|
|
|
|
|
Adds a field to a model. ``model_name`` is the model's name, ``name`` is
|
|
|
|
the field's name, and ``field`` is an unbound Field instance (the thing
|
|
|
|
you would put in the field declaration in ``models.py`` - for example,
|
|
|
|
``models.IntegerField(null=True)``.
|
|
|
|
|
|
|
|
The ``preserve_default`` argument indicates whether the field's default
|
|
|
|
value is permanent and should be baked into the project state (``True``),
|
|
|
|
or if it is temporary and just for this migration (``False``) - usually
|
|
|
|
because the migration is adding a non-nullable field to a table and needs
|
2014-03-01 00:44:03 +08:00
|
|
|
a default value to put into existing rows. It does not effect the behavior
|
2014-02-13 02:53:35 +08:00
|
|
|
of setting defaults in the database directly - Django never sets database
|
|
|
|
defaults, and always applies them in the Django ORM code.
|
|
|
|
|
|
|
|
RemoveField
|
|
|
|
-----------
|
|
|
|
|
2014-04-28 03:05:25 +08:00
|
|
|
.. class:: RemoveField(model_name, name)
|
2014-02-13 02:53:35 +08:00
|
|
|
|
|
|
|
Removes a field from a model.
|
|
|
|
|
|
|
|
Bear in mind that when reversed this is actually adding a field to a model;
|
|
|
|
if the field is not nullable this may make this operation irreversible (apart
|
|
|
|
from any data loss, which of course is irreversible).
|
|
|
|
|
|
|
|
AlterField
|
|
|
|
----------
|
|
|
|
|
2014-04-28 03:05:25 +08:00
|
|
|
.. class:: AlterField(model_name, name, field)
|
2014-02-13 02:53:35 +08:00
|
|
|
|
2014-04-28 03:05:25 +08:00
|
|
|
Alters a field's definition, including changes to its type,
|
|
|
|
:attr:`~django.db.models.Field.null`, :attr:`~django.db.models.Field.unique`,
|
|
|
|
:attr:`~django.db.models.Field.db_column` and other field attributes.
|
2014-02-13 02:53:35 +08:00
|
|
|
|
|
|
|
Note that not all changes are possible on all databases - for example, you
|
|
|
|
cannot change a text-type field like ``models.TextField()`` into a number-type
|
|
|
|
field like ``models.IntegerField()`` on most databases.
|
|
|
|
|
|
|
|
RenameField
|
|
|
|
-----------
|
|
|
|
|
2014-04-28 03:05:25 +08:00
|
|
|
.. class:: RenameField(model_name, old_name, new_name)
|
2014-02-13 02:53:35 +08:00
|
|
|
|
2014-04-28 03:05:25 +08:00
|
|
|
Changes a field's name (and, unless :attr:`~django.db.models.Field.db_column`
|
|
|
|
is set, its column name).
|
2014-02-13 02:53:35 +08:00
|
|
|
|
|
|
|
Special Operations
|
|
|
|
==================
|
|
|
|
|
|
|
|
RunSQL
|
|
|
|
------
|
|
|
|
|
2014-04-28 03:05:25 +08:00
|
|
|
.. class:: RunSQL(sql, reverse_sql=None, state_operations=None)
|
2014-02-13 02:53:35 +08:00
|
|
|
|
2014-04-23 07:05:14 +08:00
|
|
|
Allows running of arbitrary SQL on the database - useful for more advanced
|
2014-02-13 02:53:35 +08:00
|
|
|
features of database backends that Django doesn't support directly, like
|
|
|
|
partial indexes.
|
|
|
|
|
2014-04-26 16:22:48 +08:00
|
|
|
``sql``, and ``reverse_sql`` if provided, should be strings of SQL to run on
|
|
|
|
the database. On most database backends (all but PostgreSQL), Django will
|
|
|
|
split the SQL into individual statements prior to executing them. This
|
|
|
|
requires installing the sqlparse_ Python library.
|
2014-02-13 02:53:35 +08:00
|
|
|
|
|
|
|
The ``state_operations`` argument is so you can supply operations that are
|
2014-03-01 00:44:03 +08:00
|
|
|
equivalent to the SQL in terms of project state; for example, if you are
|
2014-02-13 02:53:35 +08:00
|
|
|
manually creating a column, you should pass in a list containing an ``AddField``
|
|
|
|
operation here so that the autodetector still has an up-to-date state of the
|
|
|
|
model (otherwise, when you next run ``makemigrations``, it won't see any
|
|
|
|
operation that adds that field and so will try to run it again).
|
|
|
|
|
2014-04-26 16:22:48 +08:00
|
|
|
.. _sqlparse: https://pypi.python.org/pypi/sqlparse
|
2014-02-13 02:53:35 +08:00
|
|
|
|
|
|
|
RunPython
|
|
|
|
---------
|
|
|
|
|
2014-05-08 05:28:34 +08:00
|
|
|
.. class:: RunPython(code, reverse_code=None, atomic=True)
|
2014-02-13 02:53:35 +08:00
|
|
|
|
|
|
|
Runs custom Python code in a historical context. ``code`` (and ``reverse_code``
|
|
|
|
if supplied) should be callable objects that accept two arguments; the first is
|
|
|
|
an instance of ``django.apps.registry.Apps`` containing historical models that
|
|
|
|
match the operation's place in the project history, and the second is an
|
2014-04-28 03:05:25 +08:00
|
|
|
instance of :class:`SchemaEditor
|
|
|
|
<django.db.backends.schema.BaseDatabaseSchemaEditor>`.
|
2014-02-13 02:53:35 +08:00
|
|
|
|
|
|
|
You are advised to write the code as a separate function above the ``Migration``
|
2014-04-15 01:07:02 +08:00
|
|
|
class in the migration file, and just pass it to ``RunPython``. Here's an
|
2014-04-28 03:05:25 +08:00
|
|
|
example of using ``RunPython`` to create some initial objects on a ``Country``
|
|
|
|
model::
|
2014-04-15 01:07:02 +08:00
|
|
|
|
2014-05-16 01:41:55 +08:00
|
|
|
# -*- coding: utf-8 -*-
|
2014-04-15 01:07:02 +08:00
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
|
|
def forwards_func(apps, schema_editor):
|
|
|
|
# We get the model from the versioned app registry;
|
|
|
|
# if we directly import it, it'll be the wrong version
|
|
|
|
Country = apps.get_model("myapp", "Country")
|
|
|
|
Country.objects.create(name="USA", code="us")
|
|
|
|
Country.objects.create(name="France", code="fr")
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = []
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.RunPython(
|
|
|
|
forwards_func,
|
|
|
|
),
|
|
|
|
]
|
|
|
|
|
|
|
|
This is generally the operation you would use to create
|
|
|
|
:ref:`data migrations <data-migrations>`, run
|
|
|
|
custom data updates and alterations, and anything else you need access to an
|
|
|
|
ORM and/or python code for.
|
|
|
|
|
|
|
|
If you're upgrading from South, this is basically the South pattern as an
|
|
|
|
operation - one or two methods for forwards and backwards, with an ORM and
|
|
|
|
schema operations available. You should be able to translate the ``orm.Model``
|
|
|
|
or ``orm["appname", "Model"]`` references from South directly into
|
|
|
|
``apps.get_model("appname", "Model")`` references here and leave most of the
|
|
|
|
rest of the code unchanged for data migrations.
|
|
|
|
|
2014-04-28 03:05:25 +08:00
|
|
|
Much like :class:`RunSQL`, ensure that if you change schema inside here you're
|
2014-04-15 01:07:02 +08:00
|
|
|
either doing it outside the scope of the Django model system (e.g. triggers)
|
2014-04-28 03:05:25 +08:00
|
|
|
or that you use :class:`SeparateDatabaseAndState` to add in operations that will
|
2014-04-15 01:07:02 +08:00
|
|
|
reflect your changes to the model state - otherwise, the versioned ORM and
|
|
|
|
the autodetector will stop working correctly.
|
2014-02-13 02:53:35 +08:00
|
|
|
|
2014-05-08 05:28:34 +08:00
|
|
|
By default, ``RunPython`` will run its contents inside a transaction even
|
|
|
|
on databases that do not support DDL transactions (for example, MySQL and
|
|
|
|
Oracle). This should be safe, but may cause a crash if you attempt to use
|
|
|
|
the ``schema_editor`` provided on these backends; in this case, please
|
|
|
|
set ``atomic=False``.
|
|
|
|
|
2014-02-13 02:53:35 +08:00
|
|
|
SeparateDatabaseAndState
|
|
|
|
------------------------
|
|
|
|
|
2014-04-28 03:05:25 +08:00
|
|
|
.. class:: SeparateDatabaseAndState(database_operations=None, state_operations=None)
|
2014-02-13 02:53:35 +08:00
|
|
|
|
2014-03-03 00:05:57 +08:00
|
|
|
A highly specialized operation that let you mix and match the database
|
2014-02-13 02:53:35 +08:00
|
|
|
(schema-changing) and state (autodetector-powering) aspects of operations.
|
|
|
|
|
|
|
|
It accepts two list of operations, and when asked to apply state will use the
|
|
|
|
state list, and when asked to apply changes to the database will use the database
|
|
|
|
list. Do not use this operation unless you're very sure you know what you're doing.
|
|
|
|
|
|
|
|
Writing your own
|
|
|
|
================
|
|
|
|
|
|
|
|
Operations have a relatively simple API, and they're designed so that you can
|
|
|
|
easily write your own to supplement the built-in Django ones. The basic structure
|
2014-04-28 03:05:25 +08:00
|
|
|
of an ``Operation`` looks like this::
|
2014-02-13 02:53:35 +08:00
|
|
|
|
|
|
|
from django.db.migrations.operations.base import Operation
|
|
|
|
|
|
|
|
class MyCustomOperation(Operation):
|
|
|
|
|
|
|
|
# If this is False, it means that this operation will be ignored by
|
|
|
|
# sqlmigrate; if true, it will be run and the SQL collected for its output.
|
|
|
|
reduces_to_sql = False
|
|
|
|
|
|
|
|
# If this is False, Django will refuse to reverse past this operation.
|
|
|
|
reversible = False
|
|
|
|
|
|
|
|
def __init__(self, arg1, arg2):
|
|
|
|
# Operations are usually instantiated with arguments in migration
|
|
|
|
# files. Store the values of them on self for later use.
|
|
|
|
pass
|
|
|
|
|
|
|
|
def state_forwards(self, app_label, state):
|
|
|
|
# The Operation should take the 'state' parameter (an instance of
|
|
|
|
# django.db.migrations.state.ProjectState) and mutate it to match
|
|
|
|
# any schema changes that have occurred.
|
|
|
|
pass
|
|
|
|
|
|
|
|
def database_forwards(self, app_label, schema_editor, from_state, to_state):
|
|
|
|
# The Operation should use schema_editor to apply any changes it
|
|
|
|
# wants to make to the database.
|
|
|
|
pass
|
|
|
|
|
|
|
|
def database_backwards(self, app_label, schema_editor, from_state, to_state):
|
|
|
|
# If reversible is True, this is called when the operation is reversed.
|
|
|
|
pass
|
|
|
|
|
|
|
|
def describe(self):
|
|
|
|
# This is used to describe what the operation does in console output.
|
|
|
|
return "Custom Operation"
|
|
|
|
|
|
|
|
You can take this template and work from it, though we suggest looking at the
|
|
|
|
built-in Django operations in ``django.db.migrations.operations`` - they're
|
|
|
|
easy to read and cover a lot of the example usage of semi-internal aspects
|
|
|
|
of the migration framework like ``ProjectState`` and the patterns used to get
|
|
|
|
historical models.
|
|
|
|
|
|
|
|
Some things to note:
|
|
|
|
|
2014-04-28 03:05:25 +08:00
|
|
|
* You don't need to learn too much about ``ProjectState`` to just write simple
|
2014-02-13 02:53:35 +08:00
|
|
|
migrations; just know that it has a ``.render()`` method that turns it into
|
|
|
|
an app registry (which you can then call ``get_model`` on).
|
|
|
|
|
|
|
|
* ``database_forwards`` and ``database_backwards`` both get two states passed
|
|
|
|
to them; these just represent the difference the ``state_forwards`` method
|
|
|
|
would have applied, but are given to you for convenience and speed reasons.
|
|
|
|
|
|
|
|
* ``to_state`` in the database_backwards method is the *older* state; that is,
|
|
|
|
the one that will be the current state once the migration has finished reversing.
|
|
|
|
|
|
|
|
* You might see implementations of ``references_model`` on the built-in
|
|
|
|
operations; this is part of the autodetection code and does not matter for
|
|
|
|
custom operations.
|
|
|
|
|
|
|
|
As a simple example, let's make an operation that loads PostgreSQL extensions
|
|
|
|
(which contain some of PostgreSQL's more exciting features). It's simple enough;
|
|
|
|
there's no model state changes, and all it does is run one command::
|
|
|
|
|
|
|
|
from django.db.migrations.operations.base import Operation
|
|
|
|
|
|
|
|
class LoadExtension(Operation):
|
|
|
|
|
|
|
|
reversible = True
|
|
|
|
|
|
|
|
def __init__(self, name):
|
|
|
|
self.name = name
|
|
|
|
|
|
|
|
def state_forwards(self, app_label, state):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def database_forwards(self, app_label, schema_editor, from_state, to_state):
|
|
|
|
schema_editor.execute("CREATE EXTENSION IF NOT EXISTS %s" % self.name)
|
|
|
|
|
|
|
|
def database_backwards(self, app_label, schema_editor, from_state, to_state):
|
|
|
|
schema_editor.execute("DROP EXTENSION %s" % self.name)
|
|
|
|
|
|
|
|
def describe(self):
|
|
|
|
return "Creates extension %s" % self.name
|