Fix initialization of plugin_data table in AdminStore
[cascardo/ipsilon.git] / ipsilon / util / plugin.py
index 978e470..6aecbf6 100644 (file)
@@ -150,6 +150,7 @@ class PluginObject(Log):
         try:
             Store._is_upgrade = True  # pylint: disable=protected-access
             self.on_enable()
+            self._data.create_plugin_data_table(self.name)
             for store in self.used_datastores():
                 store.upgrade_database()
         finally: