summaryrefslogtreecommitdiffstats
path: root/config-db
diff options
context:
space:
mode:
Diffstat (limited to 'config-db')
-rw-r--r--config-db/OpenSLX/DBSchema.pm11
1 files changed, 10 insertions, 1 deletions
diff --git a/config-db/OpenSLX/DBSchema.pm b/config-db/OpenSLX/DBSchema.pm
index 911b0f42..ee4c9c81 100644
--- a/config-db/OpenSLX/DBSchema.pm
+++ b/config-db/OpenSLX/DBSchema.pm
@@ -35,7 +35,7 @@ use OpenSLX::Basics;
### fk => foreign key (integer)
################################################################################
-my $VERSION = 0.29;
+my $VERSION = 0.30;
my $DbSchema = {
'version' => $VERSION,
@@ -724,6 +724,15 @@ sub _schemaUpgradeDBFrom
return 1;
},
+ 0.30 => sub {
+ my $metaDB = shift;
+
+ # dummy schema change, just to trigger the attribute synchronization
+ # into the default system (required since plugins have been added
+ # and removed)
+
+ return 1;
+ },
);
1;