Commit f67cc23c authored by Michal Čihař's avatar Michal Čihař

Document upgrading to south

parent 766897dc
......@@ -165,6 +165,23 @@ invoke following SQL command to adjust it:
ALTER TABLE `trans_subproject` ADD `template` VARCHAR(200);
On upgrade to version 1.2, the migration procedure has changed. It now uses
South for migrating database. To switch to this new migration schema, you need
to run following commands:
.. code-block:: sh
./manage.py syncdb
./manage.py migrate weblate.trans 0001 --fake
./manage.py migrate weblate.accounts 0001 --fake
./manage.py migrate weblate.lang 0001 --fake
The rest of upgrade to 1.2 (and all future versions), is just matter of:
.. code-block:: sh
./manage.py migrate
Migrating from Pootle
---------------------
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment