migration-operations.txt 19 KB

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