Ignore:
Timestamp:
7 Feb 2017, 08:33:05 (8 years ago)
Author:
Henrik Bettermann
Message:

Add officer name fields do IDepartment and IFaculty. Plugins must be updated!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/app.py

    r13617 r14511  
    7979
    8080    def updatePlugins(self):
    81         """Lookup all plugins and call their `update()` method.
     81        """Lookup plugins and call their `update()` method to
     82        upgrade Kofa's database since software version 1.4 (2016-01-14).
    8283        """
    83         getUtility(IKofaPluggable, name='documents').update(
    84             self, 'documents', self.logger)
    85         getUtility(IKofaPluggable, name='users').update(
    86             self, 'users', self.logger)
    87         getUtility(IKofaPluggable, name='applicants').update(
    88             self, 'applicants', self.logger)
     84        getUtility(IKofaPluggable, name='faculties').update(
     85            self, 'faculties', self.logger)
     86        getUtility(IKofaPluggable, name='departments').update(
     87            self, 'departments', self.logger)
    8988        getUtility(IKofaPluggable, name='certificates').update(
    9089            self, 'certificates', self.logger)
Note: See TracChangeset for help on using the changeset viewer.