summaryrefslogtreecommitdiffstats
path: root/config-db
diff options
context:
space:
mode:
Diffstat (limited to 'config-db')
-rw-r--r--config-db/OpenSLX/DBSchema.pm10
1 files changed, 9 insertions, 1 deletions
diff --git a/config-db/OpenSLX/DBSchema.pm b/config-db/OpenSLX/DBSchema.pm
index 08ef5c60..7187f217 100644
--- a/config-db/OpenSLX/DBSchema.pm
+++ b/config-db/OpenSLX/DBSchema.pm
@@ -34,7 +34,7 @@ use OpenSLX::Basics;
### fk => foreign key (integer)
################################################################################
-my $VERSION = 0.31;
+my $VERSION = 0.32;
my $DbSchema = {
'version' => $VERSION,
@@ -715,6 +715,14 @@ sub _schemaUpgradeDBFrom
return 1;
},
+ 0.32 => sub {
+ my $metaDB = shift;
+
+ # dummy schema change, just to trigger the attribute synchronization,
+ # as the 'theme' plugin has been removed
+
+ return 1;
+ },
);
1;