From: Manoj K Date: Mon, 15 Sep 2014 13:20:03 +0000 (+0530) Subject: #29521 - Added goal amount field to progress bar table schema X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=10a071d67a8eddf65349b5a646c3daf5933177f2;p=com.zyxware.civiwci.git #29521 - Added goal amount field to progress bar table schema --- diff --git a/sql/install.sql b/sql/install.sql index 7ee2858..329b2a6 100644 --- a/sql/install.sql +++ b/sql/install.sql @@ -3,6 +3,7 @@ CREATE TABLE IF NOT EXISTS civicrm_wci_progress_bar ( id int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Custom Progress bar Id.', name varchar(64) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Name of progress bar.', starting_amount float unsigned NULL COMMENT 'Arbitrary starting amount for progress bar.', + goal_amount float unsigned NULL COMMENT 'Goal amount for progress bar.', PRIMARY KEY (`id`), UNIQUE KEY `unique_wci_name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;