[FIX] website_mail_group: restore missing snippet icon
[odoo/odoo.git] / history / migrate / 3.3.0-3.4.0 / README
1 This document describes the steps to follow to migrate from a version 3.3.0 of Tiny ERP server to a version 3.4.0
2
3 Warning: the migration scripts involved in this migration are only meant for 
4 a standard Tiny ERP installation. It might not work or even break some data 
5 if you added or modified some code to the default Tiny ERP distribution.
6
7 To migrate a 3.3.0 server to version 3.4.0 you should:
8
9 - stop Tiny ERP server 3.3.0
10
11 - backup your database
12         For example: pg_dump terp330 > backup330.sql
13
14 - run the pre.py script (located in this directory)
15         You might need to pass it some optional arguments so that it can connect 
16         to the database.
17
18         For example: python pre.py -d terp330
19
20 - run TinyERP server 3.4.0 with "-u all" in the parameters
21         For example: ./tinyerp-server.py -d terp330 -u all
22
23 - stop TinyERP server 3.4.0
24
25 - run the post.py script (located in this directory)
26
27         You might need to pass it some optional arguments so that it can connect 
28         to the database.
29
30         For example: python post.py -d terp330
31
32 - run TinyERP server 3.4.0 again with "-u all" in the parameters
33         For example: ./tinyerp-server.py -d terp330 -u all
34
35 - you are ready to work with the new version.