File: glossary.rst

package info (click to toggle)
migrate 0.7.2-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 844 kB
  • sloc: python: 5,297; makefile: 83; sh: 4
file content (26 lines) | stat: -rw-r--r-- 798 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
.. _glossary:

********
Glossary
********

.. glossary::
    :sorted:

    repository
        A migration repository contains :command:`manage.py`, a configuration
        file (:file:`migrate.cfg`) and the database :term:`changeset` scripts
        which can be Python scripts or SQL files.

    changeset
        A set of instructions how upgrades and downgrades to or from a specific
        version of a database schema should be performed.

    ORM
        Abbreviation for "object relational mapper". An ORM is a tool that maps
        object hierarchies to database relations.

    version
        A version in SQLAlchemy migrate is defined by a :term:`changeset`.
        Versions may be numbered using ascending numbers or using timestamps
        (as of SQLAlchemy migrate release 0.7.2)