Skip to content
This repository has been archived by the owner on Sep 13, 2024. It is now read-only.

Developer #182

Merged
merged 3 commits into from
Feb 2, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
********************************************************************************/
// -ve timestamp before release, +ve timestamp after release.
$patch_version = '20150202';
$YetiForce_current_version = '1.2.53 RC';
$YetiForce_current_version = '1.2.54 RC';
$_SESSION['yetiforce_version'] = $YetiForce_current_version;
9 changes: 5 additions & 4 deletions install/install_schema/data.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
SQLyog Ultimate v12.03 (64 bit)
MySQL - 5.5.24 : Database - yetiforce
*********************************************************************
*/
*/


/*!40101 SET NAMES utf8 */;

Expand Down Expand Up @@ -12873,9 +12874,9 @@ insert into `vtiger_projecttasktype_seq`(`id`) values (4);

/*Data for the table `vtiger_projecttype` */

insert into `vtiger_projecttype`(`projecttypeid`,`projecttype`,`presence`,`picklist_valueid`,`sortorderid`) values (2,'administrative',1,270,2);
insert into `vtiger_projecttype`(`projecttypeid`,`projecttype`,`presence`,`picklist_valueid`,`sortorderid`) values (3,'operative',1,271,3);
insert into `vtiger_projecttype`(`projecttypeid`,`projecttype`,`presence`,`picklist_valueid`,`sortorderid`) values (4,'other',1,272,4);
insert into `vtiger_projecttype`(`projecttypeid`,`projecttype`,`presence`,`picklist_valueid`,`sortorderid`) values (2,'PLL_INTERNAL',1,270,2);
insert into `vtiger_projecttype`(`projecttypeid`,`projecttype`,`presence`,`picklist_valueid`,`sortorderid`) values (3,'PLL_EXTERNAL',1,271,3);
insert into `vtiger_projecttype`(`projecttypeid`,`projecttype`,`presence`,`picklist_valueid`,`sortorderid`) values (4,'PLL_COMMON',1,272,4);

/*Data for the table `vtiger_projecttype_seq` */

Expand Down
5 changes: 4 additions & 1 deletion install/install_schema/scheme.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
SQLyog Ultimate v12.03 (64 bit)
MySQL - 5.5.24 : Database - yetiforce
*********************************************************************
*/
*/


/*!40101 SET NAMES utf8 */;

Expand Down Expand Up @@ -3152,6 +3153,7 @@ CREATE TABLE `vtiger_module_dashboard` (
`size` varchar(50) DEFAULT NULL,
`limit` int(10) DEFAULT NULL,
`isdefault` int(1) NOT NULL DEFAULT '0',
`owners` varchar(100) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `vtiger_module_dashboard_ibfk_1` (`blockid`),
CONSTRAINT `vtiger_module_dashboard_ibfk_1` FOREIGN KEY (`blockid`) REFERENCES `vtiger_module_dashboard_blocks` (`id`) ON DELETE CASCADE
Expand All @@ -3178,6 +3180,7 @@ CREATE TABLE `vtiger_module_dashboard_widgets` (
`data` text,
`size` varchar(50) DEFAULT NULL,
`limit` int(10) DEFAULT NULL,
`owners` varchar(100) DEFAULT NULL,
`position` varchar(50) DEFAULT NULL,
`isdefault` int(1) DEFAULT '0',
`active` int(1) DEFAULT '0',
Expand Down