aboutsummaryrefslogtreecommitdiff
path: root/documentation/migrations.rst
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/migrations.rst')
-rw-r--r--documentation/migrations.rst24
1 files changed, 0 insertions, 24 deletions
diff --git a/documentation/migrations.rst b/documentation/migrations.rst
deleted file mode 100644
index 97d2c0f9..00000000
--- a/documentation/migrations.rst
+++ /dev/null
@@ -1,24 +0,0 @@
-Migrations
-==========
-
-Migrations of the database are managed
-with the database migrations tool
-`Alembic <https://bitbucket.org/zzzeek/alembic>`_.
-
-The Flask extensions `Flask-Script <https://github.com/smurfix/flask-script>`_
-and `Flask-Migrate <https://github.com/miguelgrinberg/flask-migrate/>`_
-are used to ease remote migrations.
-
-Local migrations
-----------------
-
-.. code-block:: bash
-
- $ python manager.py db upgrade
-
-Remote migrations
------------------
-
-.. code-block:: bash
-
- $ heroku run python manager.py db upgrade
bgstack15