Statistics
| Branch: | Tag: | Revision:

root / README.upgrade @ 0f8ffac4

History | View | Annotate | Download (572 Bytes)

1
UPGRADE
2
=======
3

    
4
0.7.9 -> 0.7.10
5
---------------
6
* Update settings.py (BACKEND*, SERVICE_NAME, *_EMAIL, *_TARGET, IM_*)
7
* Update 'attributes' table in mysql (backend):
8
    
9
    mysql> update attributes set `key`='ETag' where `key`='hash';
10

    
11
* Upgrade 'im_user' table (im app):
12
    
13
    ALTER TABLE im_user ADD COLUMN 'password' VARCHAR(255);
14

    
15
0.7.10 -> 0.7.11
16
----------------
17
* Install python-django-south
18
* Add 'south' in INSTALLED_APPS in settings.py
19
* Setup south:
20
    python manage.py syncdb
21
    python manage.py migrate im 0001 --fake
22
    python manage.py migrate im