Skip to content

Commit 8fc5a07

Browse files
committed
Upgraded db and platform version
1 parent 39182fe commit 8fc5a07

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

application/config/version.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
* The Ushahidi Engine version
44
* Make sure to update the ushahidi_version in the settings table too!
55
*/
6-
$config['ushahidi_version'] = "2.7";
6+
$config['ushahidi_version'] = "2.7.1";
77

88
/**
99
* The Ushahidi Engine DB revision number
1010
* Increments when changes are made to the Ushahidi DB schema.
1111
*/
12-
$config['ushahidi_db_version'] = "107";
12+
$config['ushahidi_db_version'] = "108";

sql/upgrade107-108.sql

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
-- UPDATE db_version
2+
UPDATE `settings` SET `value` = 108 WHERE `key` = 'db_version';
3+
4+
-- UPDATE ushahidi_version
5+
UPDATE `settings` SET `value` = '2.7.1' WHERE `key` = 'ushahidi_version';

sql/ushahidi.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1498,5 +1498,5 @@ CREATE TABLE IF NOT EXISTS `verified` (
14981498
* Version information for table `settings`
14991499
*
15001500
*/
1501-
UPDATE `settings` SET `value` = '107' WHERE `key` = 'db_version';
1502-
UPDATE `settings` SET `value` = '2.7' WHERE `key`= 'ushahidi_version';
1501+
UPDATE `settings` SET `value` = '108' WHERE `key` = 'db_version';
1502+
UPDATE `settings` SET `value` = '2.7.1' WHERE `key`= 'ushahidi_version';

0 commit comments

Comments
 (0)