aboutsummaryrefslogtreecommitdiff
path: root/doc/UPGRADE.txt
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2011-05-04 08:02:33 +0200
committerChristian Weiske <cweiske@cweiske.de>2011-05-04 08:02:33 +0200
commitdda05f5cc7e1d984564e5154f6ceda762c2224a3 (patch)
treee72e5b7df28d99e39300cb77eadca414ab9f66cd /doc/UPGRADE.txt
parent69e58d8632198cf3eb39317d9382007731a10141 (diff)
downloadsemanticscuttle-dda05f5cc7e1d984564e5154f6ceda762c2224a3.tar.gz
semanticscuttle-dda05f5cc7e1d984564e5154f6ceda762c2224a3.tar.bz2
SQL schema version table to ease future database upgrades
Diffstat (limited to 'doc/UPGRADE.txt')
-rw-r--r--doc/UPGRADE.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/UPGRADE.txt b/doc/UPGRADE.txt
index c4470f9..3be6654 100644
--- a/doc/UPGRADE.txt
+++ b/doc/UPGRADE.txt
@@ -2,6 +2,17 @@ Upgrading SemanticScuttle from a previous version
=================================================
+From version 0.97 to 0.98
+-------------------------
+Database updates: Apply data/schema/6.sql or do the following:
+
+ CREATE TABLE `sc_version` (
+ `schema_version` int(11) NOT NULL
+ ) DEFAULT CHARSET=utf8;
+
+ INSERT INTO `sc_version` (`schema_version`) VALUES ('6');
+
+
From version 0.96 to 0.97
-------------------------
No database changes necessary.