summaryrefslogtreecommitdiffstats
path: root/config-db
diff options
context:
space:
mode:
authorOliver Tappe2008-05-24 13:50:21 +0200
committerOliver Tappe2008-05-24 13:50:21 +0200
commit64905ad80f1da9a2c382f74f6af4e96b7b7d59a3 (patch)
treee7cd5949b24b79916eae20f646674b8de8e956cf /config-db
parent* fixed bug introduced recently that would cause attributes of default system to (diff)
downloadcore-64905ad80f1da9a2c382f74f6af4e96b7b7d59a3.tar.gz
core-64905ad80f1da9a2c382f74f6af4e96b7b7d59a3.tar.xz
core-64905ad80f1da9a2c382f74f6af4e96b7b7d59a3.zip
* artifically bumped the schema version to 0.30 in order to trigger a synchronization
of attributes into default system (required since plugins were added & removed) git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@1788 95ad53e4-c205-0410-b2fa-d234c58c8868
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;