migration-operations.txt 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  1. ====================
  2. Migration Operations
  3. ====================
  4. .. module:: django.db.migrations.operations
  5. Migration files are composed of one or more ``Operation``\s, objects that
  6. declaratively record what the migration should do to your database.
  7. Django also uses these ``Operation`` objects to work out what your models
  8. looked like historically, and to calculate what changes you've made to
  9. your models since the last migration so it can automatically write
  10. your migrations; that's why they're declarative, as it means Django can
  11. easily load them all into memory and run through them without touching
  12. the database to work out what your project should look like.
  13. There are also more specialized ``Operation`` objects which are for things like
  14. :ref:`data migrations <data-migrations>` and for advanced manual database
  15. manipulation. You can also write your own ``Operation`` classes if you want
  16. to encapsulate a custom change you commonly make.
  17. If you need an empty migration file to write your own ``Operation`` objects
  18. into, just use ``python manage.py makemigrations --empty yourappname``,
  19. but be aware that manually adding schema-altering operations can confuse the
  20. migration autodetector and make resulting runs of :djadmin:`makemigrations`
  21. output incorrect code.
  22. All of the core Django operations are available from the
  23. ``django.db.migrations.operations`` module.
  24. Schema Operations
  25. =================
  26. CreateModel
  27. -----------
  28. .. class:: CreateModel(name, fields, options=None, bases=None)
  29. Creates a new model in the project history and a corresponding table in the
  30. database to match it.
  31. ``name`` is the model name, as would be written in the ``models.py`` file.
  32. ``fields`` is a list of 2-tuples of ``(field_name, field_instance)``.
  33. The field instance should be an unbound field (so just ``models.CharField()``,
  34. rather than a field takes from another model).
  35. ``options`` is an optional dictionary of values from the model's ``Meta`` class.
  36. ``bases`` is an optional list of other classes to have this model inherit from;
  37. it can contain both class objects as well as strings in the format
  38. ``"appname.ModelName"`` if you want to depend on another model (so you inherit
  39. from the historical version). If it's not supplied, it defaults to just
  40. inheriting from the standard ``models.Model``.
  41. DeleteModel
  42. -----------
  43. .. class:: DeleteModel(name)
  44. Deletes the model from the project history and its table from the database.
  45. RenameModel
  46. -----------
  47. .. class:: RenameModel(old_name, new_name)
  48. Renames the model from an old name to a new one.
  49. You may have to manually add
  50. this if you change the model's name and quite a few of its fields at once; to
  51. the autodetector, this will look like you deleted a model with the old name
  52. and added a new one with a different name, and the migration it creates will
  53. lose any data in the old table.
  54. AlterModelTable
  55. ---------------
  56. .. class:: AlterModelTable(name, table)
  57. Changes the model's table name (the :attr:`~django.db.models.Options.db_table`
  58. option on the ``Meta`` subclass).
  59. AlterUniqueTogether
  60. -------------------
  61. .. class:: AlterUniqueTogether(name, unique_together)
  62. Changes the model's set of unique constraints (the
  63. :attr:`~django.db.models.Options.unique_together` option on the ``Meta``
  64. subclass).
  65. AlterIndexTogether
  66. ------------------
  67. .. class:: AlterIndexTogether(name, index_together)
  68. Changes the model's set of custom indexes (the
  69. :attr:`~django.db.models.Options.index_together` option on the ``Meta``
  70. subclass).
  71. AddField
  72. --------
  73. .. class:: AddField(model_name, name, field, preserve_default=True)
  74. Adds a field to a model. ``model_name`` is the model's name, ``name`` is
  75. the field's name, and ``field`` is an unbound Field instance (the thing
  76. you would put in the field declaration in ``models.py`` - for example,
  77. ``models.IntegerField(null=True)``.
  78. The ``preserve_default`` argument indicates whether the field's default
  79. value is permanent and should be baked into the project state (``True``),
  80. or if it is temporary and just for this migration (``False``) - usually
  81. because the migration is adding a non-nullable field to a table and needs
  82. a default value to put into existing rows. It does not effect the behavior
  83. of setting defaults in the database directly - Django never sets database
  84. defaults, and always applies them in the Django ORM code.
  85. RemoveField
  86. -----------
  87. .. class:: RemoveField(model_name, name)
  88. Removes a field from a model.
  89. Bear in mind that when reversed this is actually adding a field to a model;
  90. if the field is not nullable this may make this operation irreversible (apart
  91. from any data loss, which of course is irreversible).
  92. AlterField
  93. ----------
  94. .. class:: AlterField(model_name, name, field)
  95. Alters a field's definition, including changes to its type,
  96. :attr:`~django.db.models.Field.null`, :attr:`~django.db.models.Field.unique`,
  97. :attr:`~django.db.models.Field.db_column` and other field attributes.
  98. Note that not all changes are possible on all databases - for example, you
  99. cannot change a text-type field like ``models.TextField()`` into a number-type
  100. field like ``models.IntegerField()`` on most databases.
  101. RenameField
  102. -----------
  103. .. class:: RenameField(model_name, old_name, new_name)
  104. Changes a field's name (and, unless :attr:`~django.db.models.Field.db_column`
  105. is set, its column name).
  106. Special Operations
  107. ==================
  108. RunSQL
  109. ------
  110. .. class:: RunSQL(sql, reverse_sql=None, state_operations=None)
  111. Allows running of arbitrary SQL on the database - useful for more advanced
  112. features of database backends that Django doesn't support directly, like
  113. partial indexes.
  114. ``sql``, and ``reverse_sql`` if provided, should be strings of SQL to run on
  115. the database. On most database backends (all but PostgreSQL), Django will
  116. split the SQL into individual statements prior to executing them. This
  117. requires installing the sqlparse_ Python library.
  118. The ``state_operations`` argument is so you can supply operations that are
  119. equivalent to the SQL in terms of project state; for example, if you are
  120. manually creating a column, you should pass in a list containing an ``AddField``
  121. operation here so that the autodetector still has an up-to-date state of the
  122. model (otherwise, when you next run ``makemigrations``, it won't see any
  123. operation that adds that field and so will try to run it again).
  124. .. _sqlparse: https://pypi.python.org/pypi/sqlparse
  125. RunPython
  126. ---------
  127. .. class:: RunPython(code, reverse_code=None, atomic=True)
  128. Runs custom Python code in a historical context. ``code`` (and ``reverse_code``
  129. if supplied) should be callable objects that accept two arguments; the first is
  130. an instance of ``django.apps.registry.Apps`` containing historical models that
  131. match the operation's place in the project history, and the second is an
  132. instance of :class:`SchemaEditor
  133. <django.db.backends.schema.BaseDatabaseSchemaEditor>`.
  134. You are advised to write the code as a separate function above the ``Migration``
  135. class in the migration file, and just pass it to ``RunPython``. Here's an
  136. example of using ``RunPython`` to create some initial objects on a ``Country``
  137. model::
  138. # -*- coding: utf-8 -*-
  139. from django.db import models, migrations
  140. def forwards_func(apps, schema_editor):
  141. # We get the model from the versioned app registry;
  142. # if we directly import it, it'll be the wrong version
  143. Country = apps.get_model("myapp", "Country")
  144. db_alias = schema_editor.connection.alias
  145. Country.objects.create(name="USA", code="us", using=db_alias)
  146. Country.objects.create(name="France", code="fr", using=db_alias)
  147. class Migration(migrations.Migration):
  148. dependencies = []
  149. operations = [
  150. migrations.RunPython(
  151. forwards_func,
  152. ),
  153. ]
  154. This is generally the operation you would use to create
  155. :ref:`data migrations <data-migrations>`, run
  156. custom data updates and alterations, and anything else you need access to an
  157. ORM and/or python code for.
  158. If you're upgrading from South, this is basically the South pattern as an
  159. operation - one or two methods for forwards and backwards, with an ORM and
  160. schema operations available. You should be able to translate the ``orm.Model``
  161. or ``orm["appname", "Model"]`` references from South directly into
  162. ``apps.get_model("appname", "Model")`` references here and leave most of the
  163. rest of the code unchanged for data migrations.
  164. Much like :class:`RunSQL`, ensure that if you change schema inside here you're
  165. either doing it outside the scope of the Django model system (e.g. triggers)
  166. or that you use :class:`SeparateDatabaseAndState` to add in operations that will
  167. reflect your changes to the model state - otherwise, the versioned ORM and
  168. the autodetector will stop working correctly.
  169. By default, ``RunPython`` will run its contents inside a transaction even
  170. on databases that do not support DDL transactions (for example, MySQL and
  171. Oracle). This should be safe, but may cause a crash if you attempt to use
  172. the ``schema_editor`` provided on these backends; in this case, please
  173. set ``atomic=False``.
  174. .. warning::
  175. ``RunPython`` does not magically alter the connection of the models for you;
  176. any model methods you call will go to the default database unless you
  177. give them the current database alias (available from
  178. ``schema_editor.connection.alias``, where ``schema_editor`` is the second
  179. argument to your function).
  180. SeparateDatabaseAndState
  181. ------------------------
  182. .. class:: SeparateDatabaseAndState(database_operations=None, state_operations=None)
  183. A highly specialized operation that let you mix and match the database
  184. (schema-changing) and state (autodetector-powering) aspects of operations.
  185. It accepts two list of operations, and when asked to apply state will use the
  186. state list, and when asked to apply changes to the database will use the database
  187. list. Do not use this operation unless you're very sure you know what you're doing.
  188. Writing your own
  189. ================
  190. Operations have a relatively simple API, and they're designed so that you can
  191. easily write your own to supplement the built-in Django ones. The basic structure
  192. of an ``Operation`` looks like this::
  193. from django.db.migrations.operations.base import Operation
  194. class MyCustomOperation(Operation):
  195. # If this is False, it means that this operation will be ignored by
  196. # sqlmigrate; if true, it will be run and the SQL collected for its output.
  197. reduces_to_sql = False
  198. # If this is False, Django will refuse to reverse past this operation.
  199. reversible = False
  200. def __init__(self, arg1, arg2):
  201. # Operations are usually instantiated with arguments in migration
  202. # files. Store the values of them on self for later use.
  203. pass
  204. def state_forwards(self, app_label, state):
  205. # The Operation should take the 'state' parameter (an instance of
  206. # django.db.migrations.state.ProjectState) and mutate it to match
  207. # any schema changes that have occurred.
  208. pass
  209. def database_forwards(self, app_label, schema_editor, from_state, to_state):
  210. # The Operation should use schema_editor to apply any changes it
  211. # wants to make to the database.
  212. pass
  213. def database_backwards(self, app_label, schema_editor, from_state, to_state):
  214. # If reversible is True, this is called when the operation is reversed.
  215. pass
  216. def describe(self):
  217. # This is used to describe what the operation does in console output.
  218. return "Custom Operation"
  219. You can take this template and work from it, though we suggest looking at the
  220. built-in Django operations in ``django.db.migrations.operations`` - they're
  221. easy to read and cover a lot of the example usage of semi-internal aspects
  222. of the migration framework like ``ProjectState`` and the patterns used to get
  223. historical models.
  224. Some things to note:
  225. * You don't need to learn too much about ``ProjectState`` to just write simple
  226. migrations; just know that it has a ``.render()`` method that turns it into
  227. an app registry (which you can then call ``get_model`` on).
  228. * ``database_forwards`` and ``database_backwards`` both get two states passed
  229. to them; these just represent the difference the ``state_forwards`` method
  230. would have applied, but are given to you for convenience and speed reasons.
  231. * ``to_state`` in the database_backwards method is the *older* state; that is,
  232. the one that will be the current state once the migration has finished reversing.
  233. * You might see implementations of ``references_model`` on the built-in
  234. operations; this is part of the autodetection code and does not matter for
  235. custom operations.
  236. As a simple example, let's make an operation that loads PostgreSQL extensions
  237. (which contain some of PostgreSQL's more exciting features). It's simple enough;
  238. there's no model state changes, and all it does is run one command::
  239. from django.db.migrations.operations.base import Operation
  240. class LoadExtension(Operation):
  241. reversible = True
  242. def __init__(self, name):
  243. self.name = name
  244. def state_forwards(self, app_label, state):
  245. pass
  246. def database_forwards(self, app_label, schema_editor, from_state, to_state):
  247. schema_editor.execute("CREATE EXTENSION IF NOT EXISTS %s" % self.name)
  248. def database_backwards(self, app_label, schema_editor, from_state, to_state):
  249. schema_editor.execute("DROP EXTENSION %s" % self.name)
  250. def describe(self):
  251. return "Creates extension %s" % self.name