Changes between Version 9 and Version 10 of SysAdmin/ReleaseProcess
- Timestamp:
- 01/05/09 21:06:33 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SysAdmin/ReleaseProcess
v9 v10 24 24 25 25 === Clear Database === 26 To clear database of test data & reset to defaults: 26 27 * Close Web2Py 27 28 * Start up in shell mode: … … 35 36 (This function is configured in {{{modules/sahana.py}}}) 36 37 38 NB This assumes that all required settings are being generated upon intialisation as per the [wiki:DeveloperGuidelinesSahana3Framework#Settings Framework] 39 40 To clear the database of old tables which are no longer being used: 41 {{{ 42 sqlite3 storage.db 43 drop table XXXXX; 44 .quit 45 }}} 37 46 38 47 === Export Application ===