Changes between Version 9 and Version 10 of SysAdmin/ReleaseProcess


Ignore:
Timestamp:
01/05/09 21:06:33 (16 years ago)
Author:
Fran Boon
Comment:

More on clearing Database

Legend:

Unmodified
Added
Removed
Modified
  • SysAdmin/ReleaseProcess

    v9 v10  
    2424
    2525=== Clear Database ===
     26To clear database of test data & reset to defaults:
    2627 * Close Web2Py
    2728 * Start up in shell mode:
     
    3536(This function is configured in {{{modules/sahana.py}}})
    3637
     38NB This assumes that all required settings are being generated upon intialisation as per the [wiki:DeveloperGuidelinesSahana3Framework#Settings Framework]
     39
     40To clear the database of old tables which are no longer being used:
     41{{{
     42sqlite3 storage.db
     43drop table XXXXX;
     44.quit
     45}}}
    3746
    3847=== Export Application ===