Statistics
| Branch: | Tag: | Revision:

root / README.upgrade @ ebb54b0b

History | View | Annotate | Download (596 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
* Add 'south', remove 'pithos.public' in INSTALLED_APPS in settings.py
18
* Install python-django-south
19
* Setup south:
20
    python manage.py syncdb
21
    python manage.py migrate im 0001 --fake
22
    python manage.py migrate im