Ticket #8590: 8590.comment-upgrade-doc.diff
File 8590.comment-upgrade-doc.diff, 1.1 KB (added by , 16 years ago) |
---|
-
django/django/docs/ref/contrib/comments/upgrade.txt
29 29 Upgrading data 30 30 -------------- 31 31 32 The data models have changed, as have the table names. To transfer your data into the new system, you'll need to directly run the following SQL: 32 The data models have changed, as have the table names. First, make sure that you 33 have installed the new system as explained in the 34 :ref:`quick start guide <ref-contrib-comments-index-quick-start-guide>` so that 35 the new tables are properly created. Then, to transfer your data into the new 36 system, you'll need to directly run the following SQL: 33 37 34 38 .. code-block:: sql 35 39 … … 61 65 ); 62 66 63 67 COMMIT; 68 69 Finally, if you're directly updating the code via SVN, make sure to delete all 70 stale *.pyc files remaining from the old system as they may cause some clashes. 71 No newline at end of file