~ubuntu-branches/ubuntu/quantal/zeitgeist/quantal

« back to all changes in this revision

Viewing changes to _zeitgeist/engine/upgrades/core_2_3.py

  • Committer: Bazaar Package Importer
  • Author(s): Siegfried-Angel Gevatter Pujals
  • Date: 2011-01-22 14:15:38 UTC
  • mfrom: (1.1.7 upstream) (6.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20110122141538-8poh0211pn8uv1xc
Tags: 0.7-1
* New upstream release. Some of the changes are:
   - Various performance improvements (speed, reduced I/O, etc).
   - Enhancements to the extensions system (eg. feature to ask which
     extensions are active).
   - Various bug fixes (eg. fixed find_event_for_template Python API method).
   - Added new mimetype mappings.
* Updated debian/copyright and debian/zeitgeist-core.install.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# upgrading from db version 2 to 3
 
2
# this requires no update to the actual data in the database
 
3
# it is only a schema change of event_view. This change is done
 
4
# in sql.create_db()
 
5
 
 
6
# the schema change is renaming 'subj_uri_id' column to 'subj_id', as
 
7
# both values are the same. Also 'subj_origin' gets renamed to
 
8
# 'subj_origin_uri' and 'subj_origin_id' to 'subj_origin'.
 
9
 
 
10
def run(cursor):
 
11
    pass