Skip to content

Commit

Permalink
Version 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ginatrapani committed Feb 24, 2013
1 parent 4723f28 commit d2cfc1a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions tests/migration-assertions.php
Original file line number Diff line number Diff line change
Expand Up @@ -932,7 +932,14 @@

/* 1.2.1 */
'1.2.1' => array(
'zip_url' => 'https://thinkup.com/downloads/thinkup-1.2.1.zip',
'migrations' => 0,
),

/* 1.3 */
'1.3' => array(
'zip_url' => 'file://./build/thinkup.zip',
'migrations' => 0,
),

);
6 changes: 3 additions & 3 deletions webapp/install/sql/build-db_mysql.sql
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
--
-- ThinkUp Database Creation Script
-- Auto-generated by thinkup/extras/scripts/migratedb script on 2012-12-28
-- Auto-generated by thinkup/extras/scripts/migratedb script on 2013-02-24
--

ALTER DATABASE DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
Expand Down Expand Up @@ -517,13 +517,13 @@ CREATE TABLE tu_users (
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Service user details.';


-- Dump completed on 2012-12-28 12:38:55
-- Dump completed on 2013-02-24 1:19:13

--
-- Insert DB Version
--
INSERT INTO tu_options (namespace, option_name, option_value, last_updated, created)
VALUES ('application_options', 'database_version', '1.2.1', NOW(), NOW());
VALUES ('application_options', 'database_version', '1.3', NOW(), NOW());

--
-- Insert default plugin(s)
Expand Down
2 changes: 1 addition & 1 deletion webapp/install/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
* @license http://www.gnu.org/licenses/gpl.html
* @copyright 2009-2013 Dwi Widiastuti, Gina Trapani, Guillaume Boudreau
*/
$THINKUP_VERSION = '1.2.1';
$THINKUP_VERSION = '1.3';
$THINKUP_VERSION_REQUIRED['php'] = '5.2';
$THINKUP_VERSION_REQUIRED['mysql'] = '5';

0 comments on commit d2cfc1a

Please sign in to comment.