aboutsummaryrefslogtreecommitdiff
path: root/documentation/migrations.rst
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-12-08 21:53:51 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-12-08 21:53:51 +0100
commit0821a0fc7c984411bdcc8d572b571184a1b09402 (patch)
tree2970dbbc5c75c2d8435db1d1e8072ceb71cbedb6 /documentation/migrations.rst
parentUpdated README. (diff)
downloadnewspipe-0821a0fc7c984411bdcc8d572b571184a1b09402.tar.gz
newspipe-0821a0fc7c984411bdcc8d572b571184a1b09402.tar.bz2
newspipe-0821a0fc7c984411bdcc8d572b571184a1b09402.zip
A dedicated repository for the documentation has been created.
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