#29521 - Added goal amount field to progress bar table schema
authorManoj K <manoj.k@zyxware.com>
Mon, 15 Sep 2014 13:20:03 +0000 (18:50 +0530)
committerManoj K <manoj.k@zyxware.com>
Mon, 15 Sep 2014 13:20:03 +0000 (18:50 +0530)
sql/install.sql

index 7ee2858836b5da5014d35522c4db2b38d73a3c28..329b2a6df7835ebd3c2bed3924599cd50d4013f4 100644 (file)
@@ -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 ;