summaryrefslogtreecommitdiffstats
path: root/config-db
diff options
context:
space:
mode:
authorOliver Tappe2008-06-02 15:18:27 +0200
committerOliver Tappe2008-06-02 15:18:27 +0200
commit0dac41f92d7bccedea58d973c025c87818904866 (patch)
treee3dc77dcad162a934dc914f69cc760908163aab2 /config-db
parentRemoved all kdm/gdm/xdm and most of X configuration. Before altering these fi... (diff)
downloadcore-0dac41f92d7bccedea58d973c025c87818904866.tar.gz
core-0dac41f92d7bccedea58d973c025c87818904866.tar.xz
core-0dac41f92d7bccedea58d973c025c87818904866.zip
* bumped DB-schema version in order to cleanup potential problems after
the removal of the theme plugin git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@1832 95ad53e4-c205-0410-b2fa-d234c58c8868
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;