migration-operations.txt 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456
  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. For introductory material, see the :doc:`migrations topic guide
  25. </topics/migrations>`.
  26. Schema Operations
  27. =================
  28. CreateModel
  29. -----------
  30. .. class:: CreateModel(name, fields, options=None, bases=None, managers=None)
  31. Creates a new model in the project history and a corresponding table in the
  32. database to match it.
  33. ``name`` is the model name, as would be written in the ``models.py`` file.
  34. ``fields`` is a list of 2-tuples of ``(field_name, field_instance)``.
  35. The field instance should be an unbound field (so just ``models.CharField()``,
  36. rather than a field takes from another model).
  37. ``options`` is an optional dictionary of values from the model's ``Meta`` class.
  38. ``bases`` is an optional list of other classes to have this model inherit from;
  39. it can contain both class objects as well as strings in the format
  40. ``"appname.ModelName"`` if you want to depend on another model (so you inherit
  41. from the historical version). If it's not supplied, it defaults to just
  42. inheriting from the standard ``models.Model``.
  43. ``managers`` takes a list of 2-tuples of ``(manager_name, manager_instance)``.
  44. The first manager in the list will be the default manager for this model during
  45. migrations.
  46. .. versionchanged:: 1.8
  47. The ``managers`` argument was added.
  48. DeleteModel
  49. -----------
  50. .. class:: DeleteModel(name)
  51. Deletes the model from the project history and its table from the database.
  52. RenameModel
  53. -----------
  54. .. class:: RenameModel(old_name, new_name)
  55. Renames the model from an old name to a new one.
  56. You may have to manually add
  57. this if you change the model's name and quite a few of its fields at once; to
  58. the autodetector, this will look like you deleted a model with the old name
  59. and added a new one with a different name, and the migration it creates will
  60. lose any data in the old table.
  61. AlterModelTable
  62. ---------------
  63. .. class:: AlterModelTable(name, table)
  64. Changes the model's table name (the :attr:`~django.db.models.Options.db_table`
  65. option on the ``Meta`` subclass).
  66. AlterUniqueTogether
  67. -------------------
  68. .. class:: AlterUniqueTogether(name, unique_together)
  69. Changes the model's set of unique constraints (the
  70. :attr:`~django.db.models.Options.unique_together` option on the ``Meta``
  71. subclass).
  72. AlterIndexTogether
  73. ------------------
  74. .. class:: AlterIndexTogether(name, index_together)
  75. Changes the model's set of custom indexes (the
  76. :attr:`~django.db.models.Options.index_together` option on the ``Meta``
  77. subclass).
  78. AlterOrderWithRespectTo
  79. -----------------------
  80. .. class:: AlterOrderWithRespectTo(name, order_with_respect_to)
  81. Makes or deletes the ``_order`` column needed for the
  82. :attr:`~django.db.models.Options.order_with_respect_to` option on the ``Meta``
  83. subclass.
  84. AlterModelOptions
  85. -----------------
  86. .. class:: AlterModelOptions(name, options)
  87. Stores changes to miscellaneous model options (settings on a model's ``Meta``)
  88. like ``permissions`` and ``verbose_name``. Does not affect the database, but
  89. persists these changes for :class:`RunPython` instances to use. ``options``
  90. should be a dictionary mapping option names to values.
  91. AlterModelManagers
  92. ------------------
  93. .. versionadded:: 1.8
  94. .. class:: AlterModelManagers(name, managers)
  95. Alters the managers that are available during migrations.
  96. AddField
  97. --------
  98. .. class:: AddField(model_name, name, field, preserve_default=True)
  99. Adds a field to a model. ``model_name`` is the model's name, ``name`` is
  100. the field's name, and ``field`` is an unbound Field instance (the thing
  101. you would put in the field declaration in ``models.py`` - for example,
  102. ``models.IntegerField(null=True)``.
  103. The ``preserve_default`` argument indicates whether the field's default
  104. value is permanent and should be baked into the project state (``True``),
  105. or if it is temporary and just for this migration (``False``) - usually
  106. because the migration is adding a non-nullable field to a table and needs
  107. a default value to put into existing rows. It does not effect the behavior
  108. of setting defaults in the database directly - Django never sets database
  109. defaults and always applies them in the Django ORM code.
  110. RemoveField
  111. -----------
  112. .. class:: RemoveField(model_name, name)
  113. Removes a field from a model.
  114. Bear in mind that when reversed this is actually adding a field to a model;
  115. if the field is not nullable this may make this operation irreversible (apart
  116. from any data loss, which of course is irreversible).
  117. AlterField
  118. ----------
  119. .. class:: AlterField(model_name, name, field, preserve_default=True)
  120. Alters a field's definition, including changes to its type,
  121. :attr:`~django.db.models.Field.null`, :attr:`~django.db.models.Field.unique`,
  122. :attr:`~django.db.models.Field.db_column` and other field attributes.
  123. The ``preserve_default`` argument indicates whether the field's default
  124. value is permanent and should be baked into the project state (``True``),
  125. or if it is temporary and just for this migration (``False``) - usually
  126. because the migration is altering a nullable field to a non-nullable one and
  127. needs a default value to put into existing rows. It does not effect the
  128. behavior of setting defaults in the database directly - Django never sets
  129. database defaults and always applies them in the Django ORM code.
  130. Note that not all changes are possible on all databases - for example, you
  131. cannot change a text-type field like ``models.TextField()`` into a number-type
  132. field like ``models.IntegerField()`` on most databases.
  133. .. versionchanged:: 1.7.1
  134. The ``preserve_default`` argument was added.
  135. RenameField
  136. -----------
  137. .. class:: RenameField(model_name, old_name, new_name)
  138. Changes a field's name (and, unless :attr:`~django.db.models.Field.db_column`
  139. is set, its column name).
  140. Special Operations
  141. ==================
  142. RunSQL
  143. ------
  144. .. class:: RunSQL(sql, reverse_sql=None, state_operations=None, hints=None)
  145. Allows running of arbitrary SQL on the database - useful for more advanced
  146. features of database backends that Django doesn't support directly, like
  147. partial indexes.
  148. ``sql``, and ``reverse_sql`` if provided, should be strings of SQL to run on
  149. the database. On most database backends (all but PostgreSQL), Django will
  150. split the SQL into individual statements prior to executing them. This
  151. requires installing the sqlparse_ Python library.
  152. You can also pass a list of strings or 2-tuples. The latter is used for passing
  153. queries and parameters in the same way as :ref:`cursor.execute()
  154. <executing-custom-sql>`. These three operations are equivalent::
  155. migrations.RunSQL("INSERT INTO musician (name) VALUES ('Reinhardt');")
  156. migrations.RunSQL(["INSERT INTO musician (name) VALUES ('Reinhardt');", None])
  157. migrations.RunSQL(["INSERT INTO musician (name) VALUES (%s);", ['Reinhardt']])
  158. If you want to include literal percent signs in the query, you have to double
  159. them if you are passing parameters.
  160. The ``state_operations`` argument is so you can supply operations that are
  161. equivalent to the SQL in terms of project state; for example, if you are
  162. manually creating a column, you should pass in a list containing an ``AddField``
  163. operation here so that the autodetector still has an up-to-date state of the
  164. model (otherwise, when you next run ``makemigrations``, it won't see any
  165. operation that adds that field and so will try to run it again).
  166. The optional ``hints`` argument will be passed as ``**hints`` to the
  167. :meth:`allow_migrate` method of database routers to assist them in making
  168. routing decisions. See :ref:`topics-db-multi-db-hints` for more details on
  169. database hints.
  170. .. versionchanged:: 1.7.1
  171. If you want to include literal percent signs in a query without parameters
  172. you don't need to double them anymore.
  173. .. versionchanged:: 1.8
  174. The ability to pass parameters to the ``sql`` and ``reverse_sql`` queries
  175. was added.
  176. The ``hints`` argument was added.
  177. .. attribute:: RunSQL.noop
  178. .. versionadded:: 1.8
  179. Pass the ``RunSQL.noop`` attribute to ``sql`` or ``reverse_sql`` when you
  180. want the operation not to do anything in the given direction. This is
  181. especially useful in making the operation reversible.
  182. .. _sqlparse: https://pypi.python.org/pypi/sqlparse
  183. RunPython
  184. ---------
  185. .. class:: RunPython(code, reverse_code=None, atomic=True, hints=None)
  186. Runs custom Python code in a historical context. ``code`` (and ``reverse_code``
  187. if supplied) should be callable objects that accept two arguments; the first is
  188. an instance of ``django.apps.registry.Apps`` containing historical models that
  189. match the operation's place in the project history, and the second is an
  190. instance of :class:`SchemaEditor
  191. <django.db.backends.schema.BaseDatabaseSchemaEditor>`.
  192. The optional ``hints`` argument will be passed as ``**hints`` to the
  193. :meth:`allow_migrate` method of database routers to assist them in making a
  194. routing decision. See :ref:`topics-db-multi-db-hints` for more details on
  195. database hints.
  196. .. versionadded:: 1.8
  197. The ``hints`` argument was added.
  198. You are advised to write the code as a separate function above the ``Migration``
  199. class in the migration file, and just pass it to ``RunPython``. Here's an
  200. example of using ``RunPython`` to create some initial objects on a ``Country``
  201. model::
  202. # -*- coding: utf-8 -*-
  203. from django.db import models, migrations
  204. def forwards_func(apps, schema_editor):
  205. # We get the model from the versioned app registry;
  206. # if we directly import it, it'll be the wrong version
  207. Country = apps.get_model("myapp", "Country")
  208. db_alias = schema_editor.connection.alias
  209. Country.objects.using(db_alias).bulk_create([
  210. Country(name="USA", code="us"),
  211. Country(name="France", code="fr"),
  212. ])
  213. class Migration(migrations.Migration):
  214. dependencies = []
  215. operations = [
  216. migrations.RunPython(
  217. forwards_func,
  218. ),
  219. ]
  220. This is generally the operation you would use to create
  221. :ref:`data migrations <data-migrations>`, run
  222. custom data updates and alterations, and anything else you need access to an
  223. ORM and/or python code for.
  224. If you're upgrading from South, this is basically the South pattern as an
  225. operation - one or two methods for forwards and backwards, with an ORM and
  226. schema operations available. Most of the time, you should be able to translate
  227. the ``orm.Model`` or ``orm["appname", "Model"]`` references from South directly
  228. into ``apps.get_model("appname", "Model")`` references here and leave most of
  229. the rest of the code unchanged for data migrations. However, ``apps`` will only
  230. have references to models in the current app unless migrations in other apps
  231. are added to the migration's dependencies.
  232. Much like :class:`RunSQL`, ensure that if you change schema inside here you're
  233. either doing it outside the scope of the Django model system (e.g. triggers)
  234. or that you use :class:`SeparateDatabaseAndState` to add in operations that will
  235. reflect your changes to the model state - otherwise, the versioned ORM and
  236. the autodetector will stop working correctly.
  237. By default, ``RunPython`` will run its contents inside a transaction even
  238. on databases that do not support DDL transactions (for example, MySQL and
  239. Oracle). This should be safe, but may cause a crash if you attempt to use
  240. the ``schema_editor`` provided on these backends; in this case, please
  241. set ``atomic=False``.
  242. .. warning::
  243. ``RunPython`` does not magically alter the connection of the models for you;
  244. any model methods you call will go to the default database unless you
  245. give them the current database alias (available from
  246. ``schema_editor.connection.alias``, where ``schema_editor`` is the second
  247. argument to your function).
  248. .. staticmethod:: RunPython.noop
  249. .. versionadded:: 1.8
  250. Pass the ``RunPython.noop`` method to ``code`` or ``reverse_code`` when
  251. you want the operation not to do anything in the given direction. This is
  252. especially useful in making the operation reversible.
  253. SeparateDatabaseAndState
  254. ------------------------
  255. .. class:: SeparateDatabaseAndState(database_operations=None, state_operations=None)
  256. A highly specialized operation that let you mix and match the database
  257. (schema-changing) and state (autodetector-powering) aspects of operations.
  258. It accepts two list of operations, and when asked to apply state will use the
  259. state list, and when asked to apply changes to the database will use the database
  260. list. Do not use this operation unless you're very sure you know what you're doing.
  261. Writing your own
  262. ================
  263. Operations have a relatively simple API, and they're designed so that you can
  264. easily write your own to supplement the built-in Django ones. The basic structure
  265. of an ``Operation`` looks like this::
  266. from django.db.migrations.operations.base import Operation
  267. class MyCustomOperation(Operation):
  268. # If this is False, it means that this operation will be ignored by
  269. # sqlmigrate; if true, it will be run and the SQL collected for its output.
  270. reduces_to_sql = False
  271. # If this is False, Django will refuse to reverse past this operation.
  272. reversible = False
  273. def __init__(self, arg1, arg2):
  274. # Operations are usually instantiated with arguments in migration
  275. # files. Store the values of them on self for later use.
  276. pass
  277. def state_forwards(self, app_label, state):
  278. # The Operation should take the 'state' parameter (an instance of
  279. # django.db.migrations.state.ProjectState) and mutate it to match
  280. # any schema changes that have occurred.
  281. pass
  282. def database_forwards(self, app_label, schema_editor, from_state, to_state):
  283. # The Operation should use schema_editor to apply any changes it
  284. # wants to make to the database.
  285. pass
  286. def database_backwards(self, app_label, schema_editor, from_state, to_state):
  287. # If reversible is True, this is called when the operation is reversed.
  288. pass
  289. def describe(self):
  290. # This is used to describe what the operation does in console output.
  291. return "Custom Operation"
  292. You can take this template and work from it, though we suggest looking at the
  293. built-in Django operations in ``django.db.migrations.operations`` - they're
  294. easy to read and cover a lot of the example usage of semi-internal aspects
  295. of the migration framework like ``ProjectState`` and the patterns used to get
  296. historical models.
  297. Some things to note:
  298. * You don't need to learn too much about ``ProjectState`` to just write simple
  299. migrations; just know that it has an ``apps`` property that gives access to
  300. an app registry (which you can then call ``get_model`` on).
  301. * ``database_forwards`` and ``database_backwards`` both get two states passed
  302. to them; these just represent the difference the ``state_forwards`` method
  303. would have applied, but are given to you for convenience and speed reasons.
  304. * ``to_state`` in the database_backwards method is the *older* state; that is,
  305. the one that will be the current state once the migration has finished reversing.
  306. * You might see implementations of ``references_model`` on the built-in
  307. operations; this is part of the autodetection code and does not matter for
  308. custom operations.
  309. As a simple example, let's make an operation that loads PostgreSQL extensions
  310. (which contain some of PostgreSQL's more exciting features). It's simple enough;
  311. there's no model state changes, and all it does is run one command::
  312. from django.db.migrations.operations.base import Operation
  313. class LoadExtension(Operation):
  314. reversible = True
  315. def __init__(self, name):
  316. self.name = name
  317. def state_forwards(self, app_label, state):
  318. pass
  319. def database_forwards(self, app_label, schema_editor, from_state, to_state):
  320. schema_editor.execute("CREATE EXTENSION IF NOT EXISTS %s" % self.name)
  321. def database_backwards(self, app_label, schema_editor, from_state, to_state):
  322. schema_editor.execute("DROP EXTENSION %s" % self.name)
  323. def describe(self):
  324. return "Creates extension %s" % self.name