Skip to content

Commit

Permalink
Add High (x20) profile
Browse files Browse the repository at this point in the history
  • Loading branch information
Igor Zhutaev committed Jul 18, 2016
1 parent 3b0191f commit 8354297
Show file tree
Hide file tree
Showing 4 changed files with 117 additions and 1 deletion.
13 changes: 13 additions & 0 deletions config/profiles/average.php
Expand Up @@ -27,6 +27,19 @@
'SugarFavorites' => 50000,
);

$sugarFavoritesModules = array(
'Accounts' => 5000, // 10% of base accounts
'Contacts' => 20000,
'Leads' => 20000,
'Opportunities' => 10000,
'Calls' => 60000, // 5% of base calls
'Meetings' => 20000, // 5% of base meetings
'Cases' => 10000,
'Bugs' => 6000,
'Tasks' => 10000,
'Notes' => 10000,
);

$profile_opts = array(

);
15 changes: 14 additions & 1 deletion config/profiles/high.php
@@ -1,6 +1,6 @@
<?php
$modules = array(
'Tags' => 5000,
'Tags' => 10000,
'EmailAddresses' => 2400000,
'ACLRoles' => 2000,
'Users' => 1000,
Expand All @@ -26,6 +26,19 @@
'SugarFavorites' => 200000,
);

$sugarFavoritesModules = array(
'Accounts' => 20000, // 10% of base accounts
'Contacts' => 80000,
'Leads' => 80000,
'Opportunities' => 40000,
'Calls' => 240000, // 5% of base calls
'Meetings' => 80000, // 5% of base meetings
'Cases' => 40000,
'Bugs' => 30000,
'Tasks' => 40000,
'Notes' => 40000,
);

$profile_opts = array(

);
45 changes: 45 additions & 0 deletions config/profiles/high_x20.php
@@ -0,0 +1,45 @@
<?php

$modules = array(
'Tags' => 10000,
'EmailAddresses' => 10000000,
'ACLRoles' => 2000,
'Users' => 1000,
'Teams' => 200,
'Accounts' => 4000000,
'Quotes' => 120000000,
'ProductBundles' => 4000000,
'Products' => 8000000,
'Calls' => 12000000,
'Emails' => 8000000,
'EmailText' => 8000000,
'Contacts' => 24000000,
'Leads' => 10000000,
'Opportunities' => 40000000,
'Cases' => 8000000,
'Bugs' => 6000000,
'Meetings' => 8000000,
'Tasks' => 8000000,
'Notes' => 8000000,
'Documents' => 2000000,
'Categories' => 120000,
'KBContents' => 2000000,
'SugarFavorites' => 200000,
);

$sugarFavoritesModules = array(
'Accounts' => 20000, // 10% of base accounts
'Contacts' => 80000,
'Leads' => 80000,
'Opportunities' => 40000,
'Calls' => 240000, // 5% of base calls
'Meetings' => 80000, // 5% of base meetings
'Cases' => 40000,
'Bugs' => 30000,
'Tasks' => 40000,
'Notes' => 40000,
);

$profile_opts = array(

);
45 changes: 45 additions & 0 deletions config/profiles/simple_rev2.php
@@ -0,0 +1,45 @@
<?php

$modules = array(
'Tags' => 500,
'EmailAddresses' => 60000,
'ACLRoles' => 50,
'Users' => 50,
'Teams' => 10,
'Accounts' => 5000,
'Quotes' => 5000,
'ProductBundles' => 10000,
'Products' => 20000,
'Calls' => 120000,
'Emails' => 80000,
'EmailText' => 80000,
'Contacts' => 20000,
'Leads' => 20000,
'Opportunities' => 10000,
'Cases' => 20000,
'Bugs' => 15000,
'Meetings' => 40000,
'Tasks' => 20000,
'Notes' => 20000,
'Documents' => 5000,
'Categories' => 3000,
'KBContents' => 5000,
'SugarFavorites' => 5000,
);

$sugarFavoritesModules = array(
'Accounts' => 500, // 10% of base accounts
'Contacts' => 2000,
'Leads' => 2000,
'Opportunities' => 1000,
'Calls' => 6000, // 5% of base calls
'Meetings' => 2000, // 5% of base meetings
'Cases' => 1000,
'Bugs' => 600,
'Tasks' => 1000,
'Notes' => 1000,
);

$profile_opts = array(

);

0 comments on commit 8354297

Please sign in to comment.