Mercurial > p > roundup > code
comparison doc/upgrading.txt @ 2102:666402433998
Fix some tests.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 24 Mar 2004 04:57:25 +0000 |
| parents | 3e0961d6d44d |
| children | e75a72d27b18 |
comparison
equal
deleted
inserted
replaced
| 2101:e63ff40b097a | 2102:666402433998 |
|---|---|
| 8 | 8 |
| 9 .. contents:: | 9 .. contents:: |
| 10 | 10 |
| 11 Migrating from 0.6 to 0.7 | 11 Migrating from 0.6 to 0.7 |
| 12 ========================= | 12 ========================= |
| 13 | |
| 14 0.7.0 Typed columns in MySQL backend | |
| 15 ------------------------------------ | |
| 16 | |
| 17 The MySQL (and Postgresql for that matter) backend now creates tables with | |
| 18 appropriate column datatypes (not just varchar). | |
| 19 | |
| 20 Your database will be automatically migrated to use the new schemas, but | |
| 21 it will take time. It's probably a good idea to make sure you do this as | |
| 22 part of the upgrade when users are not expected to be using the system. | |
| 23 | |
| 13 | 24 |
| 14 0.7.0 Permission setup | 25 0.7.0 Permission setup |
| 15 ---------------------- | 26 ---------------------- |
| 16 | 27 |
| 17 0.7 automatically sets up the Edit and View Permissions for all classes, | 28 0.7 automatically sets up the Edit and View Permissions for all classes, |
| 49 | 60 |
| 50 for cl in 'priority', 'status': | 61 for cl in 'priority', 'status': |
| 51 p = db.security.getPermission('View', cl) | 62 p = db.security.getPermission('View', cl) |
| 52 db.security.addPermissionToRole('User', p) | 63 db.security.addPermissionToRole('User', p) |
| 53 | 64 |
| 65 | |
| 54 0.7.0 New "actor" property | 66 0.7.0 New "actor" property |
| 55 -------------------------- | 67 -------------------------- |
| 56 | 68 |
| 57 Roundup's database has a new per-item property "actor" which reflects the | 69 Roundup's database has a new per-item property "actor" which reflects the |
| 58 user performing the last "actvitiy". See the classic template for ways to | 70 user performing the last "actvitiy". See the classic template for ways to |
| 59 integrate this new property into your interface. | 71 integrate this new property into your interface. |
| 72 | |
| 73 The property will be automatically added to your existing database. | |
| 60 | 74 |
| 61 | 75 |
| 62 0.7.0 Extending the cgi interface | 76 0.7.0 Extending the cgi interface |
| 63 --------------------------------- | 77 --------------------------------- |
| 64 | 78 |
