Linux br942.hostgator.com.br 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
Apache
: 162.241.2.188 | : 3.23.128.245
Cant Read [ /etc/named.conf ]
8.2.22
manoe678
May The Force Be With You
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
MASS DEFACE
+ Create Folder
+ Create File
/
var /
softaculous /
suitecrm /
[ HOME SHELL ]
Name
Size
Permission
Action
images
[ DIR ]
drwxr-xr-x
php53
[ DIR ]
drwxr-xr-x
php56
[ DIR ]
drwxr-xr-x
php71
[ DIR ]
drwxr-xr-x
php81
[ DIR ]
drwxr-xr-x
php82
[ DIR ]
drwxr-xr-x
.env.local
104
B
-rw-r--r--
.htaccess
100
B
-rw-r--r--
_.htaccess
3.99
KB
-rw-r--r--
clone.php
16.47
KB
-rw-r--r--
config.php
11.86
KB
-rw-r--r--
config_override.php
188
B
-rw-r--r--
config_si.php
1.08
KB
-rw-r--r--
edit.php
4.68
KB
-rw-r--r--
edit.xml
433
B
-rw-r--r--
extend.php
9.94
KB
-rw-r--r--
fileindex.php
324
B
-rw-r--r--
get_user.php
947
B
-rw-r--r--
import.php
3.68
KB
-rw-r--r--
info.xml
3.6
KB
-rw-r--r--
install.js
924
B
-rw-r--r--
install.php
11.17
KB
-rw-r--r--
install.xml
952
B
-rw-r--r--
md5
1.39
KB
-rw-r--r--
notes.txt
1.59
KB
-rw-r--r--
status.json
234
B
-rw-r--r--
suitecrm.sql
332.21
KB
-rw-r--r--
suitecrm.zip
99.14
MB
-rw-r--r--
update_pass.php
558
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : suitecrm.sql
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Database: `suitecrm880` -- -- -------------------------------------------------------- -- -- Table structure for table `accounts` -- CREATE TABLE `accounts` ( `id` char(36) NOT NULL, `name` varchar(150) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `account_type` varchar(50) DEFAULT NULL, `industry` varchar(50) DEFAULT NULL, `annual_revenue` varchar(100) DEFAULT NULL, `phone_fax` varchar(100) DEFAULT NULL, `billing_address_street` varchar(150) DEFAULT NULL, `billing_address_city` varchar(100) DEFAULT NULL, `billing_address_state` varchar(100) DEFAULT NULL, `billing_address_postalcode` varchar(20) DEFAULT NULL, `billing_address_country` varchar(255) DEFAULT NULL, `rating` varchar(100) DEFAULT NULL, `phone_office` varchar(100) DEFAULT NULL, `phone_alternate` varchar(100) DEFAULT NULL, `website` varchar(255) DEFAULT NULL, `ownership` varchar(100) DEFAULT NULL, `employees` varchar(10) DEFAULT NULL, `ticker_symbol` varchar(10) DEFAULT NULL, `shipping_address_street` varchar(150) DEFAULT NULL, `shipping_address_city` varchar(100) DEFAULT NULL, `shipping_address_state` varchar(100) DEFAULT NULL, `shipping_address_postalcode` varchar(20) DEFAULT NULL, `shipping_address_country` varchar(255) DEFAULT NULL, `parent_id` char(36) DEFAULT NULL, `sic_code` varchar(10) DEFAULT NULL, `campaign_id` char(36) DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_accnt_id_del` (`id`,`deleted`), KEY `idx_accnt_name_del` (`name`,`deleted`), KEY `idx_accnt_assigned_del` (`deleted`,`assigned_user_id`), KEY `idx_accnt_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `accounts_audit` -- CREATE TABLE `accounts_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_accounts_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `accounts_bugs` -- CREATE TABLE `accounts_bugs` ( `id` varchar(36) NOT NULL, `account_id` varchar(36) DEFAULT NULL, `bug_id` varchar(36) DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_acc_bug_acc` (`account_id`), KEY `idx_acc_bug_bug` (`bug_id`), KEY `idx_account_bug` (`account_id`,`bug_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `accounts_cases` -- CREATE TABLE `accounts_cases` ( `id` varchar(36) NOT NULL, `account_id` varchar(36) DEFAULT NULL, `case_id` varchar(36) DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_acc_case_acc` (`account_id`), KEY `idx_acc_acc_case` (`case_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `accounts_contacts` -- CREATE TABLE `accounts_contacts` ( `id` varchar(36) NOT NULL, `contact_id` varchar(36) DEFAULT NULL, `account_id` varchar(36) DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_account_contact` (`account_id`,`contact_id`), KEY `idx_contid_del_accid` (`contact_id`,`deleted`,`account_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `accounts_cstm` -- CREATE TABLE `accounts_cstm` ( `id_c` char(36) NOT NULL, `jjwg_maps_lng_c` float(11,8) DEFAULT '0.00000000', `jjwg_maps_lat_c` float(10,8) DEFAULT '0.00000000', `jjwg_maps_geocode_status_c` varchar(255) DEFAULT NULL, `jjwg_maps_address_c` varchar(255) DEFAULT NULL, PRIMARY KEY (`id_c`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `accounts_opportunities` -- CREATE TABLE `accounts_opportunities` ( `id` varchar(36) NOT NULL, `opportunity_id` varchar(36) DEFAULT NULL, `account_id` varchar(36) DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_account_opportunity` (`account_id`,`opportunity_id`), KEY `idx_oppid_del_accid` (`opportunity_id`,`deleted`,`account_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `acl_actions` -- CREATE TABLE `acl_actions` ( `id` char(36) NOT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `name` varchar(150) DEFAULT NULL, `category` varchar(100) DEFAULT NULL, `acltype` varchar(100) DEFAULT NULL, `aclaccess` int(3) DEFAULT NULL, `deleted` tinyint(1) DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_aclaction_id_del` (`id`,`deleted`), KEY `idx_category_name` (`category`,`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `acl_actions` -- INSERT INTO `acl_actions` VALUES ('102ac2b5-db7a-6c2d-72ba-679c687720c7', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'Bugs', 'module', 89, 0), ('102f67c5-7458-b68a-563a-679c68c774ff', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'SurveyQuestionOptions', 'module', 90, 0), ('11463b3f-a820-9ba4-feff-679c68d4e179', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'FP_events', 'module', 90, 0), ('11c2b370-12ba-b31c-e4af-679c6833fc86', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'jjwg_Address_Cache', 'module', 90, 0), ('1268d4f2-cf4b-a029-d8df-679c68fc9fdf', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'Bugs', 'module', 90, 0), ('1318cab8-9a1f-cc9d-2323-679c689a0c08', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'SurveyQuestionOptions', 'module', 90, 0), ('136b4fdb-8486-4568-35a9-679c685eede3', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'FP_events', 'module', 90, 0), ('137ecbc9-f4d0-112f-7fbe-679c6885406b', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'Contacts', 'module', 89, 0), ('13e4330b-60dd-bc18-3a71-679c68308cca', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'TemplateSectionLine', 'module', 89, 0), ('146ece48-5b95-a171-9960-679c685d0986', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'jjwg_Address_Cache', 'module', 90, 0), ('14cb59e4-cb2e-4caf-65d4-679c68004faf', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'Bugs', 'module', 90, 0), ('15727056-94de-f8dd-2a8b-679c686cae0d', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'SurveyQuestionOptions', 'module', 90, 0), ('15aad166-f0b2-3870-07eb-679c683ebda9', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'FP_events', 'module', 90, 0), ('15b46ece-4307-5fb2-f21f-679c6862dbd1', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'Campaigns', 'module', 90, 0), ('15bdec91-0c7c-93a4-974d-679c680e1245', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'Contacts', 'module', 90, 0), ('16d0426e-32ec-4c44-778a-679c68f517d4', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'jjwg_Address_Cache', 'module', 90, 0), ('16e13dc2-f8af-bca2-ec22-679c686a5aae', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'Bugs', 'module', 90, 0), ('17023fd5-04b7-4b22-6504-679c6863ee2d', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'TemplateSectionLine', 'module', 90, 0), ('177e08df-bc68-d2b5-291c-679c6864ad52', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'ExternalOAuthProvider', 'module', 90, 0), ('17c205fd-83e2-065e-a4ba-679c6846524f', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'AOS_Products', 'module', 90, 0), ('17e19da8-d929-8b20-79c6-679c68ffd03f', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'FP_events', 'module', 90, 0), ('1806543f-56e0-fa7f-47f0-679c68088717', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'Contacts', 'module', 90, 0), ('18077b01-2491-8a44-12e4-679c686f2e2e', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'SurveyQuestionOptions', 'module', 90, 0), ('18753d7a-0b80-a4f8-987c-679c68bb25ae', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'Campaigns', 'module', 90, 0), ('1947b0d1-4cb1-8eb3-e7a2-679c68fbc9ef', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'Bugs', 'module', 90, 0), ('1953bf91-9bd9-7b6f-6c43-679c68f287f2', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'jjwg_Address_Cache', 'module', 90, 0), ('19d79e15-79b1-27a6-6dbe-679c6845da52', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'TemplateSectionLine', 'module', 90, 0), ('1a22cc36-ea55-5fed-23e7-679c68af7023', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'Contacts', 'module', 90, 0), ('1a49e266-efbb-07eb-849e-679c68a4107c', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'SurveyQuestionOptions', 'module', 90, 0), ('1b157f3f-e8fb-8e9a-dfe3-679c6888c63a', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'Campaigns', 'module', 90, 0), ('1b53587b-0f00-1554-d084-679c68dec6c1', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'Bugs', 'module', 90, 0), ('1b71b6d4-5e7b-8489-d74e-679c68844541', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'jjwg_Address_Cache', 'module', 90, 0), ('1c7f150e-5527-960e-9e99-679c681ad7cf', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'TemplateSectionLine', 'module', 90, 0), ('1c86fec1-08dd-ba2f-2e61-679c68c21629', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'Contacts', 'module', 90, 0), ('1cb0ff79-b61c-e069-0343-679c68569896', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'SurveyQuestionOptions', 'module', 90, 0), ('1d75d9cb-e003-251e-5a37-679c68bcee9c', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'Bugs', 'module', 90, 0), ('1dbb15ce-9d36-e7c0-4453-679c683c6a9e', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'jjwg_Address_Cache', 'module', 90, 0), ('1dd0c98a-d694-1503-17b9-679c68c2a157', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'Campaigns', 'module', 90, 0), ('1ea05b20-8469-45fe-91b7-679c68fb59a0', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'Contacts', 'module', 90, 0), ('1eaef086-3398-d911-fe05-679c68770c4b', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'TemplateSectionLine', 'module', 90, 0), ('1ef2283c-80a8-049a-bc00-679c68bb104f', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'SurveyQuestionOptions', 'module', 90, 0), ('1f100ce4-fbd1-5746-7145-679c6870e9dd', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'AOW_WorkFlow', 'module', 90, 0), ('1fb7e7cf-4b65-2bbd-7332-679c68582e05', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'Bugs', 'module', 90, 0), ('2047e66e-b16c-38fa-f968-679c686b4f78', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'Campaigns', 'module', 90, 0), ('212a1c8e-f963-c2bb-4696-679c68540d62', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'Contacts', 'module', 90, 0), ('2140d8bd-d9ff-09b4-c523-679c685ff20c', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'TemplateSectionLine', 'module', 90, 0), ('22b352d7-fd20-c404-2fc7-679c685e546c', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'AM_ProjectTemplates', 'module', 89, 0), ('22e5010b-62a1-bf4f-c380-679c681b2da0', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'Campaigns', 'module', 90, 0), ('23120606-8e6d-dec4-3628-679c688e8fb6', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'Campaigns', 'module', 89, 0), ('235e9094-9d7f-48cb-f540-679c68d1b355', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'Contacts', 'module', 90, 0), ('2394c5a3-d193-45d6-b480-679c6880cc9e', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'TemplateSectionLine', 'module', 90, 0), ('24c38870-9ca3-f00a-79aa-679c680958e3', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'Emails', 'module', 89, 0), ('260cee23-a9ff-2124-ec89-679c686f6cac', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'TemplateSectionLine', 'module', 90, 0), ('26225950-04ac-0233-f9ae-679c689859f9', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'AM_ProjectTemplates', 'module', 90, 0), ('276303b8-fc32-ef71-b42e-679c6884b0c5', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'AOW_WorkFlow', 'module', 90, 0), ('27dd08eb-1913-2525-07ba-679c684fa725', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'AOR_Scheduled_Reports', 'module', 89, 0), ('28fdff52-04f4-59f8-f3f4-679c68c1a8c9', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'Emails', 'module', 90, 0), ('290bbfc8-1eda-def6-95ea-679c68bc553e', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'AM_ProjectTemplates', 'module', 90, 0), ('2a29c443-064f-6122-ce63-679c688f936c', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'AOR_Scheduled_Reports', 'module', 90, 0), ('2b524e17-545c-7868-6a4d-679c687be6fc', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'AM_ProjectTemplates', 'module', 90, 0), ('2b52cc7e-7796-e286-f040-679c68d2c57a', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'Emails', 'module', 90, 0), ('2d462db1-d97e-d761-1bb8-679c686126bc', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'AOR_Scheduled_Reports', 'module', 90, 0), ('2de467ce-6f77-e6c7-75a9-679c68c160dd', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'AM_ProjectTemplates', 'module', 90, 0), ('2e92105b-4b72-636e-66dd-679c68697380', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'Emails', 'module', 90, 0), ('2ef70fb5-eb42-672c-0bb5-679c680d374f', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'Calls', 'module', 90, 0), ('2f48877c-a9f5-d330-84e6-679c6893134f', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'FP_Event_Locations', 'module', 89, 0), ('2f80ef94-9311-4293-fa65-679c6801d9d4', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'AOR_Scheduled_Reports', 'module', 90, 0), ('31565d12-53bb-6b41-2948-679c68b74fd2', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'AM_ProjectTemplates', 'module', 90, 0), ('31c98c30-6107-73c9-0626-679c68e8f794', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'AOR_Scheduled_Reports', 'module', 90, 0), ('31e5a146-51dd-d656-9aa4-679c684c20df', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'FP_Event_Locations', 'module', 90, 0), ('332a6780-543f-33f9-42e7-679c68aee0ad', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'Emails', 'module', 90, 0), ('338af7dc-0366-cb72-63fb-679c68441c83', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'AM_ProjectTemplates', 'module', 90, 0), ('34353219-9eb5-59f7-708f-679c68f18186', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'FP_Event_Locations', 'module', 90, 0), ('34f84815-8237-4134-5118-679c68e363d5', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'AOR_Scheduled_Reports', 'module', 90, 0), ('35d147a3-aad0-d1c0-9942-679c68e7652d', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'Emails', 'module', 90, 0), ('35fc488f-4ecd-98f9-7300-679c68e7783a', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'Calls_Reschedule', 'module', 89, 0), ('366ca9a7-54c9-cbfd-b313-679c68bae21f', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'AM_ProjectTemplates', 'module', 90, 0), ('36891318-889a-12ef-5a8a-679c684efd0f', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'FP_Event_Locations', 'module', 90, 0), ('36b13a48-c26c-53d8-519c-679c688904fe', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'Alerts', 'module', 89, 0), ('370d1eb6-e858-3662-d120-679c687729f9', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'AOR_Scheduled_Reports', 'module', 90, 0), ('37fc2c3d-3022-0fc9-0ea1-679c682ea5e1', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'Emails', 'module', 90, 0), ('3872ebe4-95f9-8e2f-0c7a-679c6851c3aa', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'Calls_Reschedule', 'module', 90, 0), ('38ffa3dd-6abf-ca76-451e-679c68926133', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'Alerts', 'module', 90, 0), ('394c6324-df2b-93fb-91f8-679c687314fa', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'FP_Event_Locations', 'module', 90, 0), ('39ee03fb-69c4-0ba5-9b71-679c68916940', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'ExternalOAuthProvider', 'module', 90, 0), ('3a3a0e72-0d85-e6d0-2341-679c680fb2bc', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'Emails', 'module', 90, 0), ('3a6bdf4b-a923-4267-ca99-679c68189de8', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'AOR_Scheduled_Reports', 'module', 90, 0), ('3aecaf15-5942-0a9d-ad0a-679c6883183a', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'Calls_Reschedule', 'module', 90, 0), ('3b72475a-3697-fdff-b43f-679c68a7db2a', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'FP_Event_Locations', 'module', 90, 0), ('3bcc31b4-f7f9-3c00-1ac6-679c68706869', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'Alerts', 'module', 90, 0), ('3ccb0705-122b-c0e3-9cea-679c68890fc0', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'AOS_Products', 'module', 90, 0), ('3d826114-7db3-98a5-db72-679c683f96ca', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'Calls_Reschedule', 'module', 90, 0), ('3dd6fbc1-1ff0-41ec-cd58-679c68a1b5bd', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'FP_Event_Locations', 'module', 90, 0), ('3ec6ddf3-7ff7-b966-75a7-679c688c4f7f', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'Alerts', 'module', 90, 0), ('3fd4fbae-ecbd-b018-73b0-679c68e205a2', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'Calls_Reschedule', 'module', 90, 0), ('3ffcea77-589a-122f-8629-679c681e6859', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'FP_Event_Locations', 'module', 90, 0), ('4165f136-772a-5283-3993-679c687ec2a9', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'Alerts', 'module', 90, 0), ('41cd0f90-dcc4-9349-b11b-679c684d5394', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'Users', 'module', 89, 0), ('42325a70-5ec8-4dd0-7d1b-679c6826c207', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'Calls_Reschedule', 'module', 90, 0), ('4415727c-df40-92a1-39e3-679c689c5fb0', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'Users', 'module', 90, 0), ('4425f4fa-c6d2-e8c9-d59d-679c6898e61e', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'Alerts', 'module', 90, 0), ('4574d7dc-0b63-69e8-5ea6-679c687b3846', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'Calls_Reschedule', 'module', 90, 0), ('46552194-02d8-ba7e-5d9b-679c6834117a', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'Users', 'module', 90, 0), ('46ae88a3-5d37-370f-a59f-679c68dd5f1e', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'AOS_Contracts', 'module', 89, 0), ('46f8dd61-58fe-08e6-b976-679c68445e08', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'Alerts', 'module', 90, 0), ('4889814a-8107-4471-d370-679c6802d50f', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'Users', 'module', 90, 0), ('489dd9b9-2d52-6b6b-611a-679c68d44a0d', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'Calls_Reschedule', 'module', 90, 0), ('4905bff6-418f-0b35-56ee-679c68fc019f', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'AOS_Contracts', 'module', 90, 0), ('49740295-ecf6-8181-8d6a-679c6854f23a', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'Campaigns', 'module', 90, 0), ('4a17df2d-8c1e-12f6-9a7b-679c68a4fe14', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'Alerts', 'module', 90, 0), ('4a25556c-e42a-6524-0b8e-679c68db4af2', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'AOS_Quotes', 'module', 89, 0), ('4ac3ab24-70e4-5c0b-f656-679c68b06495', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'Users', 'module', 90, 0), ('4b19364e-60c2-2bcb-5a55-679c6885698a', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'AOS_Contracts', 'module', 90, 0), ('4c69897e-1f5b-f47c-3b43-679c68c333fe', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'AM_TaskTemplates', 'module', 89, 0), ('4cb090f6-e663-9d1b-f43d-679c68b4d72b', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'AOS_Quotes', 'module', 90, 0), ('4cd0097e-0d7a-e952-be93-679c68c65c56', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'AOW_WorkFlow', 'module', 90, 0), ('4cfe550a-d6f5-a77b-0ea9-679c68f27c3d', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'AOW_Processed', 'module', 89, 0), ('4d0ce3a0-c940-ff2d-1fe4-679c68f91210', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'Users', 'module', 90, 0), ('4d799740-278f-e3da-412a-679c68396c7f', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'AOS_Contracts', 'module', 90, 0), ('4ee6314b-f9c4-7656-f4de-679c68eb5d78', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'AM_TaskTemplates', 'module', 90, 0), ('4f1738e0-109c-eff1-9e98-679c680a61ef', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'AOS_Quotes', 'module', 90, 0), ('4f1f5037-3575-862e-580e-679c682b1b20', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'Users', 'module', 90, 0), ('4f9bba83-7368-c584-2f01-679c684b24f1', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'AOS_Contracts', 'module', 90, 0), ('4fc34aeb-b0eb-beac-8c15-679c6840952c', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'SurveyResponses', 'module', 89, 0), ('507d6d03-53e8-90ba-2998-679c68a23ca0', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'AOW_Processed', 'module', 90, 0), ('516fcd5d-5401-a7f1-e42b-679c6895f14f', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'ProspectLists', 'module', 89, 0), ('5184ffcf-edb0-704c-5b75-679c6840390f', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'Users', 'module', 90, 0), ('51ab4749-fd00-3ddc-2253-679c6856e90c', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'AOS_Quotes', 'module', 90, 0), ('51eee311-db49-94de-b091-679c6889934d', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'AOS_Contracts', 'module', 90, 0), ('524f6fd7-fe06-7db7-3d99-679c682fa5be', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'AM_TaskTemplates', 'module', 90, 0), ('52867d4e-ab51-0260-ad7f-679c68de1698', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'SurveyResponses', 'module', 90, 0), ('53c77f59-7d82-a03e-b82d-679c68f72ca8', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'ProspectLists', 'module', 90, 0), ('53e0f1a5-5605-bbae-57d4-679c681d17a5', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'AOS_Quotes', 'module', 90, 0), ('53ed3256-5593-04a3-d40b-679c6889927b', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'AOW_Processed', 'module', 90, 0), ('540020e8-f999-72af-74ec-679c68c5ea5d', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'AOS_Contracts', 'module', 90, 0), ('54860163-a535-59e1-cd5a-679c68e49b2d', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'Calls', 'module', 90, 0), ('54facc7b-742d-b562-67f1-679c68a4951a', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'AM_TaskTemplates', 'module', 90, 0), ('55180c92-0a49-10e2-a720-679c68a84dc6', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'SurveyResponses', 'module', 90, 0), ('563ff12c-21be-f41d-dc0f-679c685be7e6', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'AOS_Quotes', 'module', 90, 0), ('564cb196-d5ac-50d8-eb51-679c68f2a4cf', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'ProspectLists', 'module', 90, 0), ('5660c142-eae3-d4c5-9865-679c686597a6', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'AOS_Contracts', 'module', 90, 0), ('570ece92-7bb5-a46b-9988-679c68091ece', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'AOW_Processed', 'module', 90, 0), ('57594b9b-8d52-62b5-17a0-679c686649c1', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'AM_TaskTemplates', 'module', 90, 0), ('57d20e52-0ad9-bd5e-0361-679c6878ba56', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'SurveyResponses', 'module', 90, 0), ('5843d737-2f64-e40f-fc63-679c68d69fe3', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'AOS_Quotes', 'module', 90, 0), ('5847656a-4e94-0947-ed18-679c68f52ecc', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'ProspectLists', 'module', 90, 0), ('58b40364-eae5-2252-3d6a-679c68b6f2ad', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'Accounts', 'module', 89, 0), ('59a284fe-f472-b191-da17-679c68ecdbc0', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'AOW_Processed', 'module', 90, 0), ('59edee75-af18-dc35-9743-679c68e89c14', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'AM_TaskTemplates', 'module', 90, 0), ('5a5b5119-8f6b-a094-bd78-679c68ea4718', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'SurveyResponses', 'module', 90, 0), ('5a773cc3-3868-3c60-0f76-679c6834bc85', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'ProspectLists', 'module', 90, 0), ('5a7b6312-fe5f-8d03-e24c-679c685f29ef', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'AOS_Quotes', 'module', 90, 0), ('5b2587eb-20f2-31c8-6653-679c6816028a', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'Accounts', 'module', 90, 0), ('5c102159-12d6-3563-a7a7-679c687edaf7', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'AOW_Processed', 'module', 90, 0), ('5c7d64d2-06c9-4ecc-2780-679c68749c20', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'AM_TaskTemplates', 'module', 90, 0), ('5cdc8534-a28f-fedc-8608-679c680e78c5', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'ProspectLists', 'module', 90, 0), ('5cfc3390-d317-d0f3-0b34-679c686d16d7', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'SurveyResponses', 'module', 90, 0), ('5e2ececb-c965-953a-fed5-679c6844085b', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'Accounts', 'module', 90, 0), ('5e658b80-23e6-a882-a779-679c686ee1bc', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'AOW_Processed', 'module', 90, 0), ('5ed87b9e-04cf-b433-926e-679c68bc4b20', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'AM_TaskTemplates', 'module', 90, 0), ('5f21fbea-d0fa-9a8a-f483-679c68671e50', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'ProspectLists', 'module', 90, 0), ('5fe57d0c-38c9-cd44-2523-679c687f92cd', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'SurveyResponses', 'module', 90, 0), ('607cfc13-fac6-33a8-244f-679c6867c3ef', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'AOW_Processed', 'module', 90, 0), ('61226c13-bb11-43c4-8671-679c688739be', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'Accounts', 'module', 90, 0), ('61780ca0-44fb-96e8-80f6-679c689fe64f', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'ProspectLists', 'module', 90, 0), ('6246cdd5-afcc-c4e2-5341-679c68166cab', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'AOP_Case_Events', 'module', 89, 0), ('627b830d-28e3-a697-5a71-679c684efe28', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'SurveyResponses', 'module', 90, 0), ('62de032c-bf51-c704-b97f-679c681fde4e', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'AOS_Products', 'module', 90, 0), ('6374043c-32d6-f888-2b71-679c68aac178', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'EAPM', 'module', 89, 0), ('63de64ba-b27e-3ec2-2b31-679c68c00722', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'Accounts', 'module', 90, 0), ('65866905-9cdb-b965-e682-679c68bce684', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'AOP_Case_Events', 'module', 90, 0), ('663555da-10dc-38a1-75ee-679c68afa4dc', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'Accounts', 'module', 90, 0), ('665ed773-375e-d9bf-6582-679c68f692cb', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'EAPM', 'module', 90, 0), ('677674e4-ddb7-ee03-a0e5-679c6844b0e7', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'SecurityGroups', 'module', 89, 0), ('67feb3f1-7b24-bc7d-474b-679c689c6648', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'AOP_Case_Events', 'module', 90, 0), ('683d83fe-9ebc-213b-d20f-679c68ffee17', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'Meetings', 'module', 89, 0), ('686c7ffd-9a80-34fa-45e7-679c68c7718b', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'Accounts', 'module', 90, 0), ('68b357fe-5946-8fb2-a751-679c6813687c', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'EAPM', 'module', 90, 0), ('6a256c22-de36-b887-90e3-679c686e228a', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'SecurityGroups', 'module', 90, 0), ('6aa0c6e0-bc6e-81b2-25a0-679c6886f5ac', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'Accounts', 'module', 90, 0), ('6aaced25-6c2b-d6cc-ddd0-679c68beeaeb', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'AOP_Case_Events', 'module', 90, 0), ('6ade74fa-ac6d-eef4-d40e-679c68659df0', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'Documents', 'module', 89, 0), ('6aef61d1-4e98-3938-241d-679c68fdb5f9', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'EAPM', 'module', 90, 0), ('6b78d550-695f-d6e4-afe3-679c687d5ce7', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'Meetings', 'module', 90, 0), ('6c75e40c-44a7-c282-f90c-679c68887728', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'SecurityGroups', 'module', 90, 0), ('6ce0b128-860a-dfd9-0227-679c683155e1', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'AOP_Case_Events', 'module', 90, 0), ('6cfb4016-3bf9-ae93-f30a-679c689b0836', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'EAPM', 'module', 90, 0), ('6d16e90a-1a25-d10b-e3cc-679c68131c7b', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'Documents', 'module', 90, 0), ('6d5b6f3a-6ede-5411-3003-679c682fd279', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'Leads', 'module', 89, 0), ('6e20cad7-57f9-cd70-42f4-679c6843b048', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'Meetings', 'module', 90, 0), ('6e2d0936-5f12-ba0f-1d29-679c68dfe5fc', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'AOW_WorkFlow', 'module', 90, 0), ('6f0a240c-930b-9bb5-db6d-679c68a6af37', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'SecurityGroups', 'module', 90, 0), ('6f169334-04a2-19d4-6e65-679c68fa0b6d', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'AOP_Case_Events', 'module', 90, 0), ('6f399848-73f3-2f24-2c38-679c680af2c9', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'Documents', 'module', 90, 0), ('6f6ade0e-47ad-30e1-c2ab-679c686111b6', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'EAPM', 'module', 90, 0), ('70661975-a6f7-9576-f58c-679c6801dc24', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'Meetings', 'module', 90, 0), ('70d44225-05dc-910e-0a9b-679c683ef379', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'AOS_Invoices', 'module', 89, 0), ('70db0385-bffb-6991-ef34-679c68c75b1a', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'FP_events', 'module', 89, 0), ('7121a654-5329-6c90-bcb2-679c6806dca9', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'AOP_Case_Events', 'module', 90, 0), ('714c4c74-cfb4-2c6f-39ef-679c68bbc8d5', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'SecurityGroups', 'module', 90, 0), ('7187d371-4cc4-e4c5-04ea-679c68b1778e', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'Documents', 'module', 90, 0), ('71c0bebe-cf02-5ddf-37e8-679c68b76bcc', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'EAPM', 'module', 90, 0), ('7322eb7e-5b89-6ee8-3bbd-679c68233628', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'Meetings', 'module', 90, 0), ('733558ed-f392-73e1-674b-679c68fc7bcb', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'AOS_Invoices', 'module', 90, 0), ('735adce5-fc50-3154-daa2-679c68bb27ee', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'AOP_Case_Events', 'module', 90, 0), ('73b9310f-874b-ca72-5249-679c6837f8f6', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'SecurityGroups', 'module', 90, 0), ('73cc68e6-93c2-f0f7-006a-679c685b89be', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'EAPM', 'module', 90, 0), ('73f905e9-f90a-e9e9-ab67-679c682e62a5', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'Documents', 'module', 90, 0), ('7575b39f-eeef-8da8-b820-679c687b523d', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'AOS_Invoices', 'module', 90, 0), ('757a5399-4931-50d2-034c-679c68f53f25', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'Meetings', 'module', 90, 0), ('75a92d9e-3755-21da-47d3-679c6821ee53', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'Leads', 'module', 90, 0), ('7636e266-92af-7e2d-e183-679c68f30af1', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'SecurityGroups', 'module', 90, 0), ('76581518-74a0-8412-5709-679c6854659a', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'Prospects', 'module', 89, 0), ('76625df1-b19a-a418-29c6-679c6842b96d', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'Documents', 'module', 90, 0), ('779e675a-194f-6920-dc2a-679c681f63dc', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'Meetings', 'module', 90, 0), ('77cf7675-992b-5a67-3a1a-679c68db34f5', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'AOS_Invoices', 'module', 90, 0), ('787371eb-a13a-80f5-d4b8-679c681d4982', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'SecurityGroups', 'module', 90, 0), ('78942b3c-325b-54d2-d4b3-679c68d03478', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'Documents', 'module', 90, 0), ('789b35c7-6801-d8c6-5844-679c68d00695', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'Prospects', 'module', 90, 0), ('79c9f61c-9c3a-d520-5a23-679c6829ac21', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'Meetings', 'module', 90, 0), ('7a24246b-0aa0-33fc-3244-679c6840b486', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'Leads', 'module', 90, 0), ('7a9523d3-725d-a083-05b5-679c68ea3bd6', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'AOS_Invoices', 'module', 90, 0), ('7afbbd05-2319-d2e7-8e7e-679c68918bb2', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'Prospects', 'module', 90, 0), ('7b32a03c-6f24-0e01-bb4f-679c68c34f3e', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'Surveys', 'module', 89, 0), ('7b6e87f7-25de-3971-3abf-679c68f49999', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'Project', 'module', 89, 0), ('7bbd5d45-7cd4-8ac8-1a4e-679c68706d05', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'Documents', 'module', 90, 0), ('7cb60e4c-3fa9-86be-8a1a-679c68e131a5', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'AOS_Invoices', 'module', 90, 0), ('7d1a2c68-abd2-ed33-d921-679c68ae4e2e', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'Leads', 'module', 90, 0), ('7d696690-932d-caa8-a6e3-679c6810417e', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'jjwg_Maps', 'module', 89, 0), ('7db392b4-b397-75bf-2600-679c68fc83a6', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'Prospects', 'module', 90, 0), ('7dfa53a3-5b78-11ed-0838-679c68be3b84', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'Project', 'module', 90, 0), ('7e173930-46e4-3744-0ffd-679c687352a1', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'Surveys', 'module', 90, 0), ('7f34f15a-6220-de99-a19f-679c683c0497', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'AOS_Invoices', 'module', 90, 0), ('800fbb9f-dcfb-dae7-24ae-679c6820b2ec', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'jjwg_Maps', 'module', 90, 0), ('8036b94d-3fbc-c445-cfb8-679c68f12c87', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'Project', 'module', 90, 0), ('804daf37-dc6a-f99c-4639-679c682ac83d', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'Leads', 'module', 90, 0), ('805cd525-4cc7-98fe-dcde-679c685c3a6c', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'Surveys', 'module', 90, 0), ('80c2ecf6-4bbd-c242-d024-679c68416aac', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'Prospects', 'module', 90, 0), ('8153ba6c-7bc7-6803-e822-679c68818973', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'AOS_Invoices', 'module', 90, 0), ('828ceae0-7118-c0c8-d473-679c6811161c', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'Project', 'module', 90, 0), ('8290f867-6570-bc4e-131d-679c68727a1a', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'Leads', 'module', 90, 0), ('82d3b024-761e-5c4b-0d7d-679c681b0ecf', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'jjwg_Maps', 'module', 90, 0), ('82ed7e26-607a-dc74-8247-679c68f02251', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'Surveys', 'module', 90, 0), ('8360203f-23c9-8819-9bdb-679c68d23bcd', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'Prospects', 'module', 90, 0), ('84b1db81-5a2d-06f4-f77e-679c68530538', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'Leads', 'module', 90, 0), ('84cfff57-f50a-c231-dc09-679c68e6b8f4', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'Project', 'module', 90, 0), ('851949a9-65a4-8d6a-1b98-679c6803c2bd', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'jjwg_Maps', 'module', 90, 0), ('857d259d-b967-f3e2-1daf-679c68beba19', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'Surveys', 'module', 90, 0), ('85ab0ca5-ec03-a3ef-f01a-679c685a5abb', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'AOK_Knowledge_Base_Categories', 'module', 89, 0), ('86509b94-0d59-655d-5492-679c685246f5', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'Prospects', 'module', 90, 0), ('8707e9c0-afe0-250a-1c51-679c682f2674', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'Leads', 'module', 90, 0), ('87501b8f-1aad-0197-0cd2-679c68759b82', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'Project', 'module', 90, 0), ('87717117-4162-087b-ff45-679c68abdb66', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'jjwg_Maps', 'module', 90, 0), ('87c41b1d-be1a-e696-fc82-679c68c2fa5a', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'AOP_Case_Updates', 'module', 89, 0), ('87ed752b-012d-14e8-ae75-679c68133d61', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'Surveys', 'module', 90, 0), ('88cec833-591c-db94-1ee9-679c683ad2bc', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'AOK_Knowledge_Base_Categories', 'module', 90, 0), ('895ecd68-28eb-afe6-5d2f-679c680f4339', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'Prospects', 'module', 90, 0), ('8961a3b0-2f16-a828-71ab-679c687dd7a4', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'Project', 'module', 90, 0), ('89aeac3f-492b-8274-e235-679c680c4f2b', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'jjwg_Maps', 'module', 90, 0), ('89f102e2-3a6a-ad1f-0a9d-679c68057e1b', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'AOS_Products', 'module', 90, 0), ('8ab560da-d2ff-4877-57bc-679c6820d2c2', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'Surveys', 'module', 90, 0), ('8b207f58-182d-c325-9f88-679c6828a5f9', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'AOP_Case_Updates', 'module', 90, 0), ('8b74f92b-2149-0370-a108-679c68351acf', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'AOK_Knowledge_Base_Categories', 'module', 90, 0), ('8b957df4-385a-0d98-619f-679c68831c4f', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'Project', 'module', 90, 0), ('8bf677bf-77f7-fcfc-96a6-679c6816d250', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'jjwg_Maps', 'module', 90, 0), ('8cf2e493-e679-8f3a-9488-679c68668293', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'Surveys', 'module', 90, 0), ('8d63139a-5043-5332-3aac-679c6837d8b5', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'AOP_Case_Updates', 'module', 90, 0), ('8dbfe01a-ff55-d21e-62b0-679c68be9904', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'AOK_Knowledge_Base_Categories', 'module', 90, 0), ('8e4a57f8-7395-7c82-3116-679c68a94782', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'jjwg_Maps', 'module', 90, 0), ('8fc183fc-a96d-bfc7-a622-679c68b7bdd8', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'AOP_Case_Updates', 'module', 90, 0), ('90411a39-3067-dc66-a1b9-679c68dfcf04', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'AOK_Knowledge_Base_Categories', 'module', 90, 0), ('9200a2a4-a589-0782-ff7a-679c6891aec4', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'AOP_Case_Updates', 'module', 90, 0), ('92ef2238-ca7d-70c3-2666-679c68d57eb8', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'AOK_Knowledge_Base_Categories', 'module', 90, 0), ('938ce7ef-c291-4d69-1c42-679c680ec9f1', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'Tasks', 'module', 89, 0), ('942800be-c8eb-ffa6-37a2-679c682c5558', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'AOW_WorkFlow', 'module', 90, 0), ('9481075f-8006-c318-d9f2-679c68400439', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'AOP_Case_Updates', 'module', 90, 0), ('951a32a4-d500-4f88-b2c5-679c689e9d81', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'AOK_Knowledge_Base_Categories', 'module', 90, 0), ('952f5eee-678c-0922-7b55-679c680f108c', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'OutboundEmailAccounts', 'module', 89, 0), ('962060b1-95b3-72c8-972d-679c68e221b0', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'Tasks', 'module', 90, 0), ('96dbcc0f-2771-7c57-3b6f-679c6874a9fa', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'AOP_Case_Updates', 'module', 90, 0), ('9778257e-c777-1254-c418-679c681c2dca', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'AOK_Knowledge_Base_Categories', 'module', 90, 0), ('9870dff7-cef1-222b-2418-679c68ec5d1b', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'Tasks', 'module', 90, 0), ('987cb84f-a388-8cb2-5720-679c68aa8056', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'OutboundEmailAccounts', 'module', 90, 0), ('9915d06d-a5d4-ef59-267a-679c68b3941f', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'AOP_Case_Updates', 'module', 90, 0), ('9af526cd-b0a5-1a84-81be-679c683dfd32', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'Tasks', 'module', 90, 0), ('9b203605-79fc-ffc7-5d1f-679c68e7c1d3', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'OutboundEmailAccounts', 'module', 90, 0), ('9d1f8832-4e81-41c6-1295-679c68d7347c', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'Tasks', 'module', 90, 0), ('9d480d68-1db8-955d-42e0-679c6883ffaf', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'FP_events', 'module', 90, 0), ('9db3f416-8716-0898-b1d4-679c68aecf95', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'OutboundEmailAccounts', 'module', 90, 0), ('9fa18051-7ae6-f1ea-251e-679c68429b2e', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'Tasks', 'module', 90, 0), ('9fe8da40-4e37-134f-e51c-679c68cfa14c', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'OutboundEmailAccounts', 'module', 90, 0), ('a1da14e9-02af-f725-5a9a-679c68e85144', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'Tasks', 'module', 90, 0), ('a201e409-1f67-0741-6be2-679c68a6ebee', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'AOS_PDF_Templates', 'module', 89, 0), ('a253a23d-9f84-6c37-3a7d-679c68f76254', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'OutboundEmailAccounts', 'module', 90, 0), ('a351ee86-5cf6-d33c-7217-679c687d8805', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'Opportunities', 'module', 89, 0), ('a45c132f-cd53-bdf3-1204-679c681e5538', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'SurveyQuestionResponses', 'module', 89, 0), ('a4a67ac6-2275-d717-685b-679c68f1c797', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'OutboundEmailAccounts', 'module', 90, 0), ('a4b1069f-4d2a-e4df-74cc-679c68fa4d64', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'Tasks', 'module', 90, 0), ('a4dedf1e-a402-bf17-316d-679c6861a1cd', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'EmailMarketing', 'module', 89, 0), ('a51c8c45-f4d9-02da-5096-679c68ee1b2e', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'ProjectTask', 'module', 89, 0), ('a5e81e39-a43f-6a60-431d-679c68770f4b', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'Opportunities', 'module', 90, 0), ('a5ea0e21-f3fe-c01d-47c6-679c68c477af', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'AOS_PDF_Templates', 'module', 90, 0), ('a6f930f5-5448-cd66-aaf6-679c683a5317', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'SurveyQuestionResponses', 'module', 90, 0), ('a726c2b0-c8f4-db86-8631-679c68b8b6ba', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'OutboundEmailAccounts', 'module', 90, 0), ('a7c1ad11-410c-4500-1600-679c68b6344c', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'EmailMarketing', 'module', 90, 0), ('a7dbf3d3-1eeb-2209-f02e-679c682f6e38', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'ProjectTask', 'module', 90, 0), ('a83d479a-ade3-a4ed-cee0-679c68f565a3', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'AOS_PDF_Templates', 'module', 90, 0), ('a8415d86-4eec-2029-5e68-679c683b988a', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'Opportunities', 'module', 90, 0), ('a94d6a56-b504-9d6a-b0d3-679c6812fb40', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'SurveyQuestionResponses', 'module', 90, 0), ('a9e0844b-b0cb-8cea-0e80-679c68df9340', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'EmailMarketing', 'module', 90, 0), ('aa7a06c2-2f11-ade3-ea73-679c68ac78aa', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'AOS_PDF_Templates', 'module', 90, 0), ('aaa5917a-e467-ba05-e4ba-679c687430a2', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'ProjectTask', 'module', 90, 0), ('aae11b53-9b7c-d74f-e424-679c6831fbd2', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'Opportunities', 'module', 90, 0), ('abc6489e-ac7b-8c69-eea6-679c6819c6ee', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'SurveyQuestionResponses', 'module', 90, 0), ('ac37c819-5614-f210-13ee-679c685036d0', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'EmailMarketing', 'module', 90, 0), ('acb34fce-8d1e-3212-9dcf-679c68a1e4f1', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'AOS_PDF_Templates', 'module', 90, 0), ('acc526f9-e234-a76a-cb68-679c68a2b209', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'ProjectTask', 'module', 90, 0), ('ad242fe8-d044-6e68-0432-679c6833fd29', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'jjwg_Markers', 'module', 89, 0), ('ad2736cc-af17-093a-29cb-679c689136df', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'Opportunities', 'module', 90, 0), ('adf3df91-1b01-e09c-bde0-679c681794c7', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'AOK_KnowledgeBase', 'module', 89, 0), ('ae4cca79-7420-ae54-b011-679c684470a7', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'EmailMarketing', 'module', 90, 0), ('af1cd573-4b1e-01c4-69da-679c682b4d11', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'AOS_PDF_Templates', 'module', 90, 0), ('af278e2e-a45b-e30f-665f-679c6833bf91', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'ProjectTask', 'module', 90, 0), ('af2fabaf-6b68-abe4-965d-679c68c8b12d', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'SurveyQuestionResponses', 'module', 90, 0), ('af97c937-e349-f9eb-321f-679c68780488', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'Opportunities', 'module', 90, 0), ('aff9ca42-9ee5-1fc8-9f59-679c681d573f', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'jjwg_Markers', 'module', 90, 0), ('b02bc7de-1be2-df21-46f3-679c687c9fc2', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'AOK_KnowledgeBase', 'module', 90, 0), ('b087453e-6b9d-c6c6-11c0-679c688571d4', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'EmailMarketing', 'module', 90, 0), ('b1547ac1-2252-210d-29ca-679c6831301f', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'ProjectTask', 'module', 90, 0), ('b1564d50-d9bd-136f-c2be-679c68240934', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'SurveyQuestionResponses', 'module', 90, 0), ('b156a706-b91b-25dc-ee23-679c68afda12', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'AOS_PDF_Templates', 'module', 90, 0), ('b1cf0218-c8a7-c746-84b7-679c68bd8953', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'Opportunities', 'module', 90, 0), ('b23308d1-90d7-6062-4112-679c684b12a5', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'jjwg_Markers', 'module', 90, 0), ('b2b8aa98-e99f-8fb6-44de-679c68f511a5', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'EmailMarketing', 'module', 90, 0), ('b2f041df-5831-0f74-a901-679c68e67827', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'AOK_KnowledgeBase', 'module', 90, 0), ('b39fa80d-3d90-a1b4-fb97-679c681544c4', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'AOS_PDF_Templates', 'module', 90, 0), ('b3da1294-2401-6841-84b0-679c689fbf68', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'ProjectTask', 'module', 90, 0), ('b3ec9fd9-153e-3306-20b9-679c6801de33', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'SurveyQuestionResponses', 'module', 90, 0), ('b4329554-2da3-0fbe-e57b-679c68e921f7', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'Opportunities', 'module', 90, 0), ('b4ac08ee-7aa0-93ff-58fc-679c6897444b', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'jjwg_Markers', 'module', 90, 0), ('b4e00370-ad8b-6d82-27f6-679c68d97d83', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'Calls', 'module', 90, 0), ('b4e8a7a4-63de-8b9e-53de-679c681c755a', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'EmailMarketing', 'module', 90, 0), ('b5121b67-186c-6509-1229-679c6837f894', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'AOK_KnowledgeBase', 'module', 90, 0), ('b5e469ab-4e2a-aad5-aa26-679c689b7153', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'ProjectTask', 'module', 90, 0), ('b63de0dd-5a1f-eed4-4edf-679c682a470f', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'SurveyQuestionResponses', 'module', 90, 0), ('b746b9ee-3633-3a4d-e596-679c68ee6f5f', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'jjwg_Markers', 'module', 90, 0), ('b76f7bcb-98bb-0486-ccbc-679c682f97d7', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'AOK_KnowledgeBase', 'module', 90, 0), ('b81afd06-15b6-8612-9148-679c6829f93a', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'Notes', 'module', 89, 0), ('b8860764-c480-0720-6c24-679c68ebc43b', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'AOW_WorkFlow', 'module', 90, 0), ('b96a5406-e4aa-cab0-1db2-679c6803dfbb', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'jjwg_Markers', 'module', 90, 0), ('b99c68d3-a5f4-30dc-acd4-679c6833f45a', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'AOK_KnowledgeBase', 'module', 90, 0), ('bbf58ed0-7000-1d40-dbe0-679c689e4914', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'AOK_KnowledgeBase', 'module', 90, 0), ('bc2bbd8c-a40b-0a67-f8db-679c68fc94e0', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'jjwg_Markers', 'module', 90, 0), ('bcb5bb42-9a00-8c2a-3bc7-679c688d5528', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'Notes', 'module', 90, 0), ('bd66dcba-beba-8fab-c93b-679c68d05363', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'AOR_Reports', 'module', 89, 0), ('be06c597-6dbe-eb7c-c297-679c68556340', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'AOK_KnowledgeBase', 'module', 90, 0), ('bfb16247-408d-2db1-b510-679c68ae61a7', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'jjwg_Markers', 'module', 90, 0), ('c0d1a478-85ec-683b-8141-679c68f31cef', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'Notes', 'module', 90, 0), ('c11f02c4-6036-613b-1a91-679c68af4bed', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'AOR_Reports', 'module', 90, 0), ('c3ac886a-f9c8-ff3a-cf90-679c68f472ca', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'Notes', 'module', 90, 0), ('c5fab197-e50f-4b8c-7f40-679c6818c1fc', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'Notes', 'module', 90, 0); INSERT INTO `acl_actions` VALUES ('c7ea2378-2fd7-8af8-1bea-679c68fae9d5', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'AOS_Product_Categories', 'module', 89, 0), ('c84e6a6f-b437-7504-1a22-679c68130077', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'ExternalOAuthConnection', 'module', 89, 0), ('c880a58a-92f5-e873-3d64-679c689a7689', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'Notes', 'module', 90, 0), ('ca030624-1304-c6eb-a8e4-679c68eaa90e', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'FP_events', 'module', 90, 0), ('ca3e81f6-3a8a-57aa-8c91-679c687786e6', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'AOS_Product_Categories', 'module', 90, 0), ('caea0ede-7132-d0dd-16c8-679c681ec761', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'ExternalOAuthConnection', 'module', 90, 0), ('cb3cf6e7-9a9a-ee2a-c5f7-679c68458050', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'Notes', 'module', 90, 0), ('cc9c270b-a89d-9517-d105-679c68d7c095', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'AOS_Product_Categories', 'module', 90, 0), ('cd56c3a0-f436-bd3f-d69c-679c68bc52d9', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'ExternalOAuthConnection', 'module', 90, 0), ('ce3f3073-f615-fffc-0a0f-679c682ba3ce', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'Notes', 'module', 90, 0), ('cec6aa8e-61e0-eae5-0350-679c68111f63', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'AOS_Product_Categories', 'module', 90, 0), ('cfddec20-0264-e1a3-f5c1-679c6856b53d', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'SurveyQuestions', 'module', 89, 0), ('cfe0b3b5-131e-b3b8-924a-679c682df7ef', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'AOR_Reports', 'module', 90, 0), ('cfe9714d-19ec-7fc6-4a22-679c68009fc4', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'ExternalOAuthConnection', 'module', 90, 0), ('d0100af8-ecf6-c171-17e0-679c685ed4e9', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'SurveyQuestionOptions', 'module', 89, 0), ('d0fc6e9b-348d-597c-a197-679c6803e080', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'AOS_Product_Categories', 'module', 90, 0), ('d1a4005d-4331-dcd9-210e-679c68aa4875', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'jjwg_Address_Cache', 'module', 89, 0), ('d23b36a2-c0b8-38a3-f527-679c6898b950', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'Cases', 'module', 89, 0), ('d2630caf-6ffd-3b7c-6e2b-679c68323f70', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'ExternalOAuthConnection', 'module', 90, 0), ('d2b973df-23c7-b507-36e0-679c684ce052', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'SurveyQuestions', 'module', 90, 0), ('d331a9b0-7d97-79fd-880c-679c68306218', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'AOS_Product_Categories', 'module', 90, 0), ('d37637f5-2993-0e3e-2d67-679c680e3109', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'AOR_Reports', 'module', 90, 0), ('d476c331-41b9-859e-8a94-679c6802b538', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'InboundEmail', 'module', 89, 0), ('d4a1d93d-f530-6cee-fb97-679c68afb350', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'Cases', 'module', 90, 0), ('d4ae9e24-f641-e5fe-e6bc-679c68d4643b', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'ExternalOAuthConnection', 'module', 90, 0), ('d520d9bb-0f82-2cfc-a93a-679c684be9b5', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'SurveyQuestions', 'module', 90, 0), ('d5948b61-605f-5372-0470-679c6882b566', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'AOS_Product_Categories', 'module', 90, 0), ('d59e7041-743c-95ee-f3df-679c684a8191', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'AOR_Reports', 'module', 90, 0), ('d6bc2bfb-c946-c6ce-732d-679c680a6036', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'InboundEmail', 'module', 90, 0), ('d6e850f1-ee0f-4a53-812a-679c68b1cef8', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'ExternalOAuthConnection', 'module', 90, 0), ('d6e9ca08-3761-a3c5-a8b9-679c688a70be', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'Cases', 'module', 90, 0), ('d7e80216-c6e7-ae5a-9faa-679c685969d4', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'AOR_Reports', 'module', 90, 0), ('d81541cd-e756-0d61-777c-679c686473db', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'SurveyQuestions', 'module', 90, 0), ('d868387a-1309-8e4f-993f-679c6803e5a6', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'AOS_Product_Categories', 'module', 90, 0), ('d918b761-17e2-7a51-da84-679c68a47e11', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'ExternalOAuthConnection', 'module', 90, 0), ('d929751e-f135-0a3b-5ac3-679c680db9c1', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'InboundEmail', 'module', 90, 0), ('d9314e34-f548-426b-701d-679c6806a68d', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'jjwg_Areas', 'module', 89, 0), ('d952617e-4651-9c9e-7897-679c684131c0', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'Cases', 'module', 90, 0), ('da433181-37fb-60d4-ccc2-679c684f3ff7', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'AOR_Reports', 'module', 90, 0), ('da619ed6-de29-9dd4-021c-679c6867c1e1', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'SurveyQuestions', 'module', 90, 0), ('da8ff23f-e7a3-6153-c45c-679c68428100', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'EmailTemplates', 'module', 89, 0), ('dbc88008-d67d-8a09-88ff-679c683f05b4', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'jjwg_Areas', 'module', 90, 0), ('dbd8ddcd-40d7-bd48-a84d-679c6832515c', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'InboundEmail', 'module', 90, 0), ('dbf97754-5a7f-becf-3ece-679c68118290', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'Cases', 'module', 90, 0), ('dc936771-7a56-5475-6317-679c683067a9', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'AOR_Reports', 'module', 90, 0), ('dd0dc553-9563-73d3-e7dc-679c68531b56', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'SurveyQuestions', 'module', 90, 0), ('ddf32559-255c-72db-a833-679c6825e08e', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'InboundEmail', 'module', 90, 0), ('ddfbb740-5c20-16a3-f0d8-679c689fecd6', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'EmailTemplates', 'module', 90, 0), ('de1da61b-106f-150c-367c-679c68763785', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'jjwg_Areas', 'module', 90, 0), ('de201624-c7ab-9a86-64c6-679c68ba0526', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'Cases', 'module', 90, 0), ('df811f8f-0bbf-3f37-be2c-679c68c78d5f', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'SurveyQuestions', 'module', 90, 0), ('e060a607-be87-82fb-87aa-679c68bca2d7', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'InboundEmail', 'module', 90, 0), ('e062fa90-d547-86e5-b77e-679c685448e7', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'EmailTemplates', 'module', 90, 0), ('e08bd23e-47bb-6135-58ce-679c687e0c8e', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'Cases', 'module', 90, 0), ('e0a3b9b2-dec5-91e4-8c81-679c6881efa3', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'jjwg_Areas', 'module', 90, 0), ('e1decc93-11b0-c036-1edb-679c689de728', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'SurveyQuestions', 'module', 90, 0), ('e29ff318-a0a5-fb3a-6ded-679c68a4a0b0', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'Cases', 'module', 90, 0), ('e2bcbf16-13c5-a588-e9f9-679c68542cbe', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'EmailTemplates', 'module', 90, 0), ('e2ef896d-7be1-a106-7e7e-679c68e30640', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'jjwg_Areas', 'module', 90, 0), ('e3cfe870-d82e-4847-41c0-679c68f4377f', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'InboundEmail', 'module', 90, 0), ('e517edd4-9ca2-f6e2-a2e9-679c68d97a02', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'jjwg_Areas', 'module', 90, 0), ('e51d11e6-3e1a-189a-5388-679c681cc68b', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'EmailTemplates', 'module', 90, 0), ('e60b21ac-118d-9ded-ae8e-679c6899036d', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'InboundEmail', 'module', 90, 0), ('e6109a66-d9b7-ed9f-68a8-679c680b8c3a', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'ExternalOAuthProvider', 'module', 89, 0), ('e73dc8c4-401f-6079-9b8f-679c682e9449', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'jjwg_Areas', 'module', 90, 0), ('e779c3c5-5d0d-42f3-4d23-679c689200d8', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'EmailTemplates', 'module', 90, 0), ('e88ba656-d360-f798-ba5b-679c6847988a', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'ExternalOAuthProvider', 'module', 90, 0), ('e92c757d-f76a-2343-d514-679c6885473b', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'Calls', 'module', 89, 0), ('e9c14efd-cbd1-fb1f-5365-679c68fd96de', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'jjwg_Areas', 'module', 90, 0), ('e9c325cd-6849-795b-94b2-679c68172c72', '[[regtime]]', '[[regtime]]', '1', '', 'export', 'EmailTemplates', 'module', 90, 0), ('eb59f533-e0ea-3fa2-339c-679c687b6b6d', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'ExternalOAuthProvider', 'module', 90, 0), ('ebfb88f9-918e-ee8a-ceda-679c68a8fec9', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'Calls', 'module', 90, 0), ('ec92e53f-e84c-6694-c944-679c68c80b2f', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'AOW_WorkFlow', 'module', 89, 0), ('eced93c5-c327-0c11-1a40-679c6884507e', '[[regtime]]', '[[regtime]]', '1', '', 'access', 'AOS_Products', 'module', 89, 0), ('ed2b9e23-3b84-9499-0aee-679c682a7eb8', '[[regtime]]', '[[regtime]]', '1', '', 'massupdate', 'EmailTemplates', 'module', 90, 0), ('ee2e1b4e-4835-1410-d99d-679c68921612', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'Calls', 'module', 90, 0), ('ee6a0226-a361-7a45-1332-679c6880e765', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'FP_events', 'module', 90, 0), ('ee90cb77-680d-64c5-76f3-679c68c5e812', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'ExternalOAuthProvider', 'module', 90, 0), ('ef04e342-9ff5-fc79-239a-679c68505f7a', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'AOS_Products', 'module', 90, 0), ('f08c42bf-1d83-caa2-f1d4-679c68936513', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'Calls', 'module', 90, 0), ('f0eef8ba-74a2-5743-e055-679c6850a8fe', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'ExternalOAuthProvider', 'module', 90, 0), ('f15260ea-1bb5-aa4f-7145-679c68c5e188', '[[regtime]]', '[[regtime]]', '1', '', 'list', 'AOS_Products', 'module', 90, 0), ('f1714d82-798b-5b4d-da21-679c68fbddd8', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'AOW_WorkFlow', 'module', 90, 0), ('f2920aae-d83f-ac0a-5cb3-679c68cea067', '[[regtime]]', '[[regtime]]', '1', '', 'delete', 'Calls', 'module', 90, 0), ('f34c2b54-73d9-0dd5-e4e2-679c68c3fc3b', '[[regtime]]', '[[regtime]]', '1', '', 'import', 'ExternalOAuthProvider', 'module', 90, 0), ('f36a7968-9aa7-ebb4-5652-679c689959a9', '[[regtime]]', '[[regtime]]', '1', '', 'edit', 'AOS_Products', 'module', 90, 0), ('f665091c-73f8-b26b-eae1-679c68567cd4', '[[regtime]]', '[[regtime]]', '1', '', 'view', 'jjwg_Address_Cache', 'module', 90, 0); -- -------------------------------------------------------- -- -- Table structure for table `acl_roles` -- CREATE TABLE `acl_roles` ( `id` char(36) NOT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `name` varchar(150) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_aclrole_id_del` (`id`,`deleted`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `acl_roles_actions` -- CREATE TABLE `acl_roles_actions` ( `id` varchar(36) NOT NULL, `role_id` varchar(36) DEFAULT NULL, `action_id` varchar(36) DEFAULT NULL, `access_override` int(3) DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_acl_role_id` (`role_id`), KEY `idx_acl_action_id` (`action_id`), KEY `idx_aclrole_action` (`role_id`,`action_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `acl_roles_users` -- CREATE TABLE `acl_roles_users` ( `id` varchar(36) NOT NULL, `role_id` varchar(36) DEFAULT NULL, `user_id` varchar(36) DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_aclrole_id` (`role_id`), KEY `idx_acluser_id` (`user_id`), KEY `idx_aclrole_user` (`role_id`,`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `address_book` -- CREATE TABLE `address_book` ( `assigned_user_id` char(36) NOT NULL, `bean` varchar(50) DEFAULT NULL, `bean_id` char(36) NOT NULL, KEY `ab_user_bean_idx` (`assigned_user_id`,`bean`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `alerts` -- CREATE TABLE `alerts` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `is_read` tinyint(1) DEFAULT NULL, `target_module` varchar(255) DEFAULT NULL, `type` varchar(255) DEFAULT NULL, `url_redirect` varchar(255) DEFAULT NULL, `reminder_id` char(36) DEFAULT NULL, `snooze` datetime DEFAULT NULL, `date_start` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `am_projecttemplates` -- CREATE TABLE `am_projecttemplates` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `status` varchar(100) DEFAULT 'Draft', `priority` varchar(100) DEFAULT 'High', `override_business_hours` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `am_projecttemplates_audit` -- CREATE TABLE `am_projecttemplates_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_am_projecttemplates_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `am_projecttemplates_contacts_1_c` -- CREATE TABLE `am_projecttemplates_contacts_1_c` ( `id` varchar(36) NOT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `am_projecttemplates_ida` varchar(36) DEFAULT NULL, `contacts_idb` varchar(36) DEFAULT NULL, PRIMARY KEY (`id`), KEY `am_projecttemplates_contacts_1_alt` (`am_projecttemplates_ida`,`contacts_idb`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `am_projecttemplates_project_1_c` -- CREATE TABLE `am_projecttemplates_project_1_c` ( `id` varchar(36) NOT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `am_projecttemplates_project_1am_projecttemplates_ida` varchar(36) DEFAULT NULL, `am_projecttemplates_project_1project_idb` varchar(36) DEFAULT NULL, PRIMARY KEY (`id`), KEY `am_projecttemplates_project_1_ida1` (`am_projecttemplates_project_1am_projecttemplates_ida`), KEY `am_projecttemplates_project_1_alt` (`am_projecttemplates_project_1project_idb`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `am_projecttemplates_users_1_c` -- CREATE TABLE `am_projecttemplates_users_1_c` ( `id` varchar(36) NOT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `am_projecttemplates_ida` varchar(36) DEFAULT NULL, `users_idb` varchar(36) DEFAULT NULL, PRIMARY KEY (`id`), KEY `am_projecttemplates_users_1_alt` (`am_projecttemplates_ida`,`users_idb`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `am_tasktemplates` -- CREATE TABLE `am_tasktemplates` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `status` varchar(100) DEFAULT 'Not Started', `priority` varchar(100) DEFAULT 'High', `percent_complete` int(255) DEFAULT '0', `predecessors` int(255) DEFAULT NULL, `milestone_flag` tinyint(1) DEFAULT '0', `relationship_type` varchar(100) DEFAULT 'FS', `task_number` int(255) DEFAULT NULL, `order_number` int(255) DEFAULT NULL, `estimated_effort` int(255) DEFAULT NULL, `utilization` varchar(100) DEFAULT '0', `duration` int(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `am_tasktemplates_am_projecttemplates_c` -- CREATE TABLE `am_tasktemplates_am_projecttemplates_c` ( `id` varchar(36) NOT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `am_tasktemplates_am_projecttemplatesam_projecttemplates_ida` varchar(36) DEFAULT NULL, `am_tasktemplates_am_projecttemplatesam_tasktemplates_idb` varchar(36) DEFAULT NULL, PRIMARY KEY (`id`), KEY `am_tasktemplates_am_projecttemplates_ida1` (`am_tasktemplates_am_projecttemplatesam_projecttemplates_ida`), KEY `am_tasktemplates_am_projecttemplates_alt` (`am_tasktemplates_am_projecttemplatesam_tasktemplates_idb`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `am_tasktemplates_audit` -- CREATE TABLE `am_tasktemplates_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_am_tasktemplates_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aobh_businesshours` -- CREATE TABLE `aobh_businesshours` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `opening_hours` varchar(100) DEFAULT '1', `closing_hours` varchar(100) DEFAULT '1', `open_status` tinyint(1) DEFAULT NULL, `day` varchar(100) DEFAULT 'monday', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aok_knowledgebase` -- CREATE TABLE `aok_knowledgebase` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `status` varchar(100) DEFAULT 'Draft', `revision` varchar(255) DEFAULT NULL, `additional_info` text, `user_id_c` char(36) DEFAULT NULL, `user_id1_c` char(36) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aok_knowledgebase_audit` -- CREATE TABLE `aok_knowledgebase_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_aok_knowledgebase_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aok_knowledgebase_categories` -- CREATE TABLE `aok_knowledgebase_categories` ( `id` varchar(36) NOT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `aok_knowledgebase_id` varchar(36) DEFAULT NULL, `aok_knowledge_base_categories_id` varchar(36) DEFAULT NULL, PRIMARY KEY (`id`), KEY `aok_knowledgebase_categories_alt` (`aok_knowledgebase_id`,`aok_knowledge_base_categories_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aok_knowledge_base_categories` -- CREATE TABLE `aok_knowledge_base_categories` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aok_knowledge_base_categories_audit` -- CREATE TABLE `aok_knowledge_base_categories_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_aok_knowledge_base_categories_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aop_case_events` -- CREATE TABLE `aop_case_events` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `case_id` char(36) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aop_case_events_audit` -- CREATE TABLE `aop_case_events_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_aop_case_events_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aop_case_updates` -- CREATE TABLE `aop_case_updates` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `case_id` char(36) DEFAULT NULL, `contact_id` char(36) DEFAULT NULL, `internal` tinyint(1) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aop_case_updates_audit` -- CREATE TABLE `aop_case_updates_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_aop_case_updates_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aor_charts` -- CREATE TABLE `aor_charts` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `aor_report_id` char(36) DEFAULT NULL, `type` varchar(100) DEFAULT NULL, `x_field` int(11) DEFAULT NULL, `y_field` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aor_conditions` -- CREATE TABLE `aor_conditions` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `aor_report_id` char(36) DEFAULT NULL, `condition_order` int(255) DEFAULT NULL, `logic_op` varchar(255) DEFAULT NULL, `parenthesis` varchar(255) DEFAULT NULL, `module_path` longtext, `field` varchar(100) DEFAULT NULL, `operator` varchar(100) DEFAULT NULL, `value_type` varchar(100) DEFAULT NULL, `value` varchar(255) DEFAULT NULL, `parameter` tinyint(1) DEFAULT NULL, PRIMARY KEY (`id`), KEY `aor_conditions_index_report_id` (`aor_report_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aor_fields` -- CREATE TABLE `aor_fields` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `aor_report_id` char(36) DEFAULT NULL, `field_order` int(255) DEFAULT NULL, `module_path` longtext, `field` varchar(100) DEFAULT NULL, `display` tinyint(1) DEFAULT NULL, `link` tinyint(1) DEFAULT NULL, `label` varchar(255) DEFAULT NULL, `field_function` varchar(100) DEFAULT NULL, `sort_by` varchar(100) DEFAULT NULL, `format` varchar(100) DEFAULT NULL, `total` varchar(100) DEFAULT NULL, `sort_order` varchar(100) DEFAULT NULL, `group_by` tinyint(1) DEFAULT NULL, `group_order` varchar(100) DEFAULT NULL, `group_display` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `aor_fields_index_report_id` (`aor_report_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aor_reports` -- CREATE TABLE `aor_reports` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `report_module` varchar(100) DEFAULT NULL, `graphs_per_row` int(11) DEFAULT '2', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aor_reports_audit` -- CREATE TABLE `aor_reports_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_aor_reports_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aor_scheduled_reports` -- CREATE TABLE `aor_scheduled_reports` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `schedule` varchar(100) DEFAULT NULL, `last_run` datetime DEFAULT NULL, `status` varchar(100) DEFAULT NULL, `email_recipients` longtext, `aor_report_id` char(36) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aos_contracts` -- CREATE TABLE `aos_contracts` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `reference_code` varchar(255) DEFAULT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `total_contract_value` decimal(26,6) DEFAULT NULL, `total_contract_value_usdollar` decimal(26,6) DEFAULT NULL, `currency_id` char(36) DEFAULT NULL, `status` varchar(100) DEFAULT 'Not Started', `customer_signed_date` date DEFAULT NULL, `company_signed_date` date DEFAULT NULL, `renewal_reminder_date` datetime DEFAULT NULL, `contract_type` varchar(100) DEFAULT 'Type', `contract_account_id` char(36) DEFAULT NULL, `opportunity_id` char(36) DEFAULT NULL, `contact_id` char(36) DEFAULT NULL, `call_id` char(36) DEFAULT NULL, `total_amt` decimal(26,6) DEFAULT NULL, `total_amt_usdollar` decimal(26,6) DEFAULT NULL, `subtotal_amount` decimal(26,6) DEFAULT NULL, `subtotal_amount_usdollar` decimal(26,6) DEFAULT NULL, `discount_amount` decimal(26,6) DEFAULT NULL, `discount_amount_usdollar` decimal(26,6) DEFAULT NULL, `tax_amount` decimal(26,6) DEFAULT NULL, `tax_amount_usdollar` decimal(26,6) DEFAULT NULL, `shipping_amount` decimal(26,6) DEFAULT NULL, `shipping_amount_usdollar` decimal(26,6) DEFAULT NULL, `shipping_tax` varchar(100) DEFAULT NULL, `shipping_tax_amt` decimal(26,6) DEFAULT NULL, `shipping_tax_amt_usdollar` decimal(26,6) DEFAULT NULL, `total_amount` decimal(26,6) DEFAULT NULL, `total_amount_usdollar` decimal(26,6) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aos_contracts_audit` -- CREATE TABLE `aos_contracts_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_aos_contracts_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aos_contracts_documents` -- CREATE TABLE `aos_contracts_documents` ( `id` varchar(36) NOT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `aos_contracts_id` varchar(36) DEFAULT NULL, `documents_id` varchar(36) DEFAULT NULL, `document_revision_id` varchar(36) DEFAULT NULL, PRIMARY KEY (`id`), KEY `aos_contracts_documents_alt` (`aos_contracts_id`,`documents_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aos_invoices` -- CREATE TABLE `aos_invoices` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `billing_account_id` char(36) DEFAULT NULL, `billing_contact_id` char(36) DEFAULT NULL, `billing_address_street` varchar(150) DEFAULT NULL, `billing_address_city` varchar(100) DEFAULT NULL, `billing_address_state` varchar(100) DEFAULT NULL, `billing_address_postalcode` varchar(20) DEFAULT NULL, `billing_address_country` varchar(255) DEFAULT NULL, `shipping_address_street` varchar(150) DEFAULT NULL, `shipping_address_city` varchar(100) DEFAULT NULL, `shipping_address_state` varchar(100) DEFAULT NULL, `shipping_address_postalcode` varchar(20) DEFAULT NULL, `shipping_address_country` varchar(255) DEFAULT NULL, `number` int(11) NOT NULL, `total_amt` decimal(26,6) DEFAULT NULL, `total_amt_usdollar` decimal(26,6) DEFAULT NULL, `subtotal_amount` decimal(26,6) DEFAULT NULL, `subtotal_amount_usdollar` decimal(26,6) DEFAULT NULL, `discount_amount` decimal(26,6) DEFAULT NULL, `discount_amount_usdollar` decimal(26,6) DEFAULT NULL, `tax_amount` decimal(26,6) DEFAULT NULL, `tax_amount_usdollar` decimal(26,6) DEFAULT NULL, `shipping_amount` decimal(26,6) DEFAULT NULL, `shipping_amount_usdollar` decimal(26,6) DEFAULT NULL, `shipping_tax` varchar(100) DEFAULT NULL, `shipping_tax_amt` decimal(26,6) DEFAULT NULL, `shipping_tax_amt_usdollar` decimal(26,6) DEFAULT NULL, `total_amount` decimal(26,6) DEFAULT NULL, `total_amount_usdollar` decimal(26,6) DEFAULT NULL, `currency_id` char(36) DEFAULT NULL, `quote_number` int(11) DEFAULT NULL, `quote_date` date DEFAULT NULL, `invoice_date` date DEFAULT NULL, `due_date` date DEFAULT NULL, `status` varchar(100) DEFAULT NULL, `template_ddown_c` text, `subtotal_tax_amount` decimal(26,6) DEFAULT NULL, `subtotal_tax_amount_usdollar` decimal(26,6) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aos_invoices_audit` -- CREATE TABLE `aos_invoices_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_aos_invoices_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aos_line_item_groups` -- CREATE TABLE `aos_line_item_groups` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `total_amt` decimal(26,6) DEFAULT NULL, `total_amt_usdollar` decimal(26,6) DEFAULT NULL, `discount_amount` decimal(26,6) DEFAULT NULL, `discount_amount_usdollar` decimal(26,6) DEFAULT NULL, `subtotal_amount` decimal(26,6) DEFAULT NULL, `subtotal_amount_usdollar` decimal(26,6) DEFAULT NULL, `tax_amount` decimal(26,6) DEFAULT NULL, `tax_amount_usdollar` decimal(26,6) DEFAULT NULL, `subtotal_tax_amount` decimal(26,6) DEFAULT NULL, `subtotal_tax_amount_usdollar` decimal(26,6) DEFAULT NULL, `total_amount` decimal(26,6) DEFAULT NULL, `total_amount_usdollar` decimal(26,6) DEFAULT NULL, `parent_type` varchar(100) DEFAULT NULL, `parent_id` char(36) DEFAULT NULL, `number` int(11) DEFAULT NULL, `currency_id` char(36) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aos_line_item_groups_audit` -- CREATE TABLE `aos_line_item_groups_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_aos_line_item_groups_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aos_pdf_templates` -- CREATE TABLE `aos_pdf_templates` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` longtext, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `active` tinyint(1) DEFAULT '1', `type` varchar(100) DEFAULT NULL, `pdfheader` longtext, `pdffooter` longtext, `margin_left` int(255) DEFAULT '15', `margin_right` int(255) DEFAULT '15', `margin_top` int(255) DEFAULT '16', `margin_bottom` int(255) DEFAULT '16', `margin_header` int(255) DEFAULT '9', `margin_footer` int(255) DEFAULT '9', `page_size` varchar(100) DEFAULT NULL, `orientation` varchar(100) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aos_pdf_templates_audit` -- CREATE TABLE `aos_pdf_templates_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_aos_pdf_templates_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aos_products` -- CREATE TABLE `aos_products` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `maincode` varchar(100) DEFAULT 'XXXX', `part_number` varchar(25) DEFAULT NULL, `category` varchar(100) DEFAULT NULL, `type` varchar(100) DEFAULT 'Good', `cost` decimal(26,6) DEFAULT NULL, `cost_usdollar` decimal(26,6) DEFAULT NULL, `currency_id` char(36) DEFAULT NULL, `price` decimal(26,6) DEFAULT NULL, `price_usdollar` decimal(26,6) DEFAULT NULL, `url` varchar(255) DEFAULT NULL, `contact_id` char(36) DEFAULT NULL, `product_image` varchar(255) DEFAULT NULL, `aos_product_category_id` char(36) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aos_products_audit` -- CREATE TABLE `aos_products_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_aos_products_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aos_products_quotes` -- CREATE TABLE `aos_products_quotes` ( `id` char(36) NOT NULL, `name` text, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `currency_id` char(36) DEFAULT NULL, `part_number` varchar(255) DEFAULT NULL, `item_description` text, `number` int(11) DEFAULT NULL, `product_qty` decimal(18,4) DEFAULT NULL, `product_cost_price` decimal(26,6) DEFAULT NULL, `product_cost_price_usdollar` decimal(26,6) DEFAULT NULL, `product_list_price` decimal(26,6) DEFAULT NULL, `product_list_price_usdollar` decimal(26,6) DEFAULT NULL, `product_discount` decimal(26,6) DEFAULT NULL, `product_discount_usdollar` decimal(26,6) DEFAULT NULL, `product_discount_amount` decimal(26,6) DEFAULT NULL, `product_discount_amount_usdollar` decimal(26,6) DEFAULT NULL, `discount` varchar(255) DEFAULT 'Percentage', `product_unit_price` decimal(26,6) DEFAULT NULL, `product_unit_price_usdollar` decimal(26,6) DEFAULT NULL, `vat_amt` decimal(26,6) DEFAULT NULL, `vat_amt_usdollar` decimal(26,6) DEFAULT NULL, `product_total_price` decimal(26,6) DEFAULT NULL, `product_total_price_usdollar` decimal(26,6) DEFAULT NULL, `vat` varchar(100) DEFAULT '5.0', `parent_type` varchar(100) DEFAULT NULL, `parent_id` char(36) DEFAULT NULL, `product_id` char(36) DEFAULT NULL, `group_id` char(36) DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_aospq_par_del` (`parent_id`,`parent_type`,`deleted`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aos_products_quotes_audit` -- CREATE TABLE `aos_products_quotes_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_aos_products_quotes_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aos_product_categories` -- CREATE TABLE `aos_product_categories` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `is_parent` tinyint(1) DEFAULT '0', `parent_category_id` char(36) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aos_product_categories_audit` -- CREATE TABLE `aos_product_categories_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_aos_product_categories_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aos_quotes` -- CREATE TABLE `aos_quotes` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `approval_issue` text, `billing_account_id` char(36) DEFAULT NULL, `billing_contact_id` char(36) DEFAULT NULL, `billing_address_street` varchar(150) DEFAULT NULL, `billing_address_city` varchar(100) DEFAULT NULL, `billing_address_state` varchar(100) DEFAULT NULL, `billing_address_postalcode` varchar(20) DEFAULT NULL, `billing_address_country` varchar(255) DEFAULT NULL, `shipping_address_street` varchar(150) DEFAULT NULL, `shipping_address_city` varchar(100) DEFAULT NULL, `shipping_address_state` varchar(100) DEFAULT NULL, `shipping_address_postalcode` varchar(20) DEFAULT NULL, `shipping_address_country` varchar(255) DEFAULT NULL, `expiration` date DEFAULT NULL, `number` int(11) DEFAULT NULL, `opportunity_id` char(36) DEFAULT NULL, `template_ddown_c` text, `total_amt` decimal(26,6) DEFAULT NULL, `total_amt_usdollar` decimal(26,6) DEFAULT NULL, `subtotal_amount` decimal(26,6) DEFAULT NULL, `subtotal_amount_usdollar` decimal(26,6) DEFAULT NULL, `discount_amount` decimal(26,6) DEFAULT NULL, `discount_amount_usdollar` decimal(26,6) DEFAULT NULL, `tax_amount` decimal(26,6) DEFAULT NULL, `tax_amount_usdollar` decimal(26,6) DEFAULT NULL, `shipping_amount` decimal(26,6) DEFAULT NULL, `shipping_amount_usdollar` decimal(26,6) DEFAULT NULL, `shipping_tax` varchar(100) DEFAULT NULL, `shipping_tax_amt` decimal(26,6) DEFAULT NULL, `shipping_tax_amt_usdollar` decimal(26,6) DEFAULT NULL, `total_amount` decimal(26,6) DEFAULT NULL, `total_amount_usdollar` decimal(26,6) DEFAULT NULL, `currency_id` char(36) DEFAULT NULL, `stage` varchar(100) DEFAULT 'Draft', `term` varchar(100) DEFAULT NULL, `terms_c` text, `approval_status` varchar(100) DEFAULT NULL, `invoice_status` varchar(100) DEFAULT 'Not Invoiced', `subtotal_tax_amount` decimal(26,6) DEFAULT NULL, `subtotal_tax_amount_usdollar` decimal(26,6) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aos_quotes_aos_invoices_c` -- CREATE TABLE `aos_quotes_aos_invoices_c` ( `id` varchar(36) NOT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `aos_quotes77d9_quotes_ida` varchar(36) DEFAULT NULL, `aos_quotes6b83nvoices_idb` varchar(36) DEFAULT NULL, PRIMARY KEY (`id`), KEY `aos_quotes_aos_invoices_alt` (`aos_quotes77d9_quotes_ida`,`aos_quotes6b83nvoices_idb`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aos_quotes_audit` -- CREATE TABLE `aos_quotes_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_aos_quotes_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aos_quotes_os_contracts_c` -- CREATE TABLE `aos_quotes_os_contracts_c` ( `id` varchar(36) NOT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `aos_quotese81e_quotes_ida` varchar(36) DEFAULT NULL, `aos_quotes4dc0ntracts_idb` varchar(36) DEFAULT NULL, PRIMARY KEY (`id`), KEY `aos_quotes_aos_contracts_alt` (`aos_quotese81e_quotes_ida`,`aos_quotes4dc0ntracts_idb`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aos_quotes_project_c` -- CREATE TABLE `aos_quotes_project_c` ( `id` varchar(36) NOT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `aos_quotes1112_quotes_ida` varchar(36) DEFAULT NULL, `aos_quotes7207project_idb` varchar(36) DEFAULT NULL, PRIMARY KEY (`id`), KEY `aos_quotes_project_alt` (`aos_quotes1112_quotes_ida`,`aos_quotes7207project_idb`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aow_actions` -- CREATE TABLE `aow_actions` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `aow_workflow_id` char(36) DEFAULT NULL, `action_order` int(255) DEFAULT NULL, `action` varchar(100) DEFAULT NULL, `parameters` longtext, PRIMARY KEY (`id`), KEY `aow_action_index_workflow_id` (`aow_workflow_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aow_conditions` -- CREATE TABLE `aow_conditions` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `aow_workflow_id` char(36) DEFAULT NULL, `condition_order` int(255) DEFAULT NULL, `module_path` longtext, `field` varchar(100) DEFAULT NULL, `operator` varchar(100) DEFAULT NULL, `value_type` varchar(255) DEFAULT NULL, `value` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`), KEY `aow_conditions_index_workflow_id` (`aow_workflow_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aow_processed` -- CREATE TABLE `aow_processed` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `aow_workflow_id` char(36) DEFAULT NULL, `parent_id` char(36) DEFAULT NULL, `parent_type` varchar(100) DEFAULT NULL, `status` varchar(100) DEFAULT 'Pending', PRIMARY KEY (`id`), KEY `aow_processed_index_workflow` (`aow_workflow_id`,`status`,`parent_id`,`deleted`), KEY `aow_processed_index_status` (`status`), KEY `aow_processed_index_workflow_id` (`aow_workflow_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aow_processed_aow_actions` -- CREATE TABLE `aow_processed_aow_actions` ( `id` varchar(36) NOT NULL, `aow_processed_id` varchar(36) DEFAULT NULL, `aow_action_id` varchar(36) DEFAULT NULL, `status` varchar(36) DEFAULT 'Pending', `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_aow_processed_aow_actions` (`aow_processed_id`,`aow_action_id`), KEY `idx_actid_del_freid` (`aow_action_id`,`deleted`,`aow_processed_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aow_workflow` -- CREATE TABLE `aow_workflow` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `flow_module` varchar(100) DEFAULT NULL, `flow_run_on` varchar(100) DEFAULT '0', `status` varchar(100) DEFAULT 'Active', `run_when` varchar(100) DEFAULT 'Always', `multiple_runs` tinyint(1) DEFAULT '0', `run_on_import` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `aow_workflow_index_status` (`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `aow_workflow_audit` -- CREATE TABLE `aow_workflow_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_aow_workflow_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `bugs` -- CREATE TABLE `bugs` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `bug_number` int(11) NOT NULL AUTO_INCREMENT, `type` varchar(255) DEFAULT NULL, `status` varchar(100) DEFAULT NULL, `priority` varchar(100) DEFAULT NULL, `resolution` varchar(255) DEFAULT NULL, `work_log` text, `found_in_release` varchar(255) DEFAULT NULL, `fixed_in_release` varchar(255) DEFAULT NULL, `source` varchar(255) DEFAULT NULL, `product_category` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `bugsnumk` (`bug_number`), KEY `bug_number` (`bug_number`), KEY `idx_bug_name` (`name`), KEY `idx_bugs_assigned_user` (`assigned_user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `bugs_audit` -- CREATE TABLE `bugs_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_bugs_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `cache_rebuild` -- CREATE TABLE `cache_rebuild` ( `cache_key` varchar(255) DEFAULT NULL, `rebuild` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `calls` -- CREATE TABLE `calls` ( `id` char(36) NOT NULL, `name` varchar(50) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `duration_hours` int(2) DEFAULT NULL, `duration_minutes` int(2) DEFAULT NULL, `date_start` datetime DEFAULT NULL, `date_end` datetime DEFAULT NULL, `parent_type` varchar(255) DEFAULT NULL, `status` varchar(100) DEFAULT 'Planned', `direction` varchar(100) DEFAULT NULL, `parent_id` char(36) DEFAULT NULL, `reminder_time` int(11) DEFAULT '-1', `email_reminder_time` int(11) DEFAULT '-1', `email_reminder_sent` tinyint(1) DEFAULT '0', `outlook_id` varchar(255) DEFAULT NULL, `repeat_type` varchar(36) DEFAULT NULL, `repeat_interval` int(3) DEFAULT '1', `repeat_dow` varchar(7) DEFAULT NULL, `repeat_until` date DEFAULT NULL, `repeat_count` int(7) DEFAULT NULL, `repeat_parent_id` char(36) DEFAULT NULL, `recurring_source` varchar(36) DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_call_name` (`name`), KEY `idx_status` (`status`), KEY `idx_calls_date_start` (`date_start`), KEY `idx_calls_par_del` (`parent_id`,`parent_type`,`deleted`), KEY `idx_calls_assigned_del` (`deleted`,`assigned_user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `calls_contacts` -- CREATE TABLE `calls_contacts` ( `id` varchar(36) NOT NULL, `call_id` varchar(36) DEFAULT NULL, `contact_id` varchar(36) DEFAULT NULL, `required` varchar(1) DEFAULT '1', `accept_status` varchar(25) DEFAULT 'none', `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_con_call_call` (`call_id`), KEY `idx_con_call_con` (`contact_id`), KEY `idx_call_contact` (`call_id`,`contact_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `calls_leads` -- CREATE TABLE `calls_leads` ( `id` varchar(36) NOT NULL, `call_id` varchar(36) DEFAULT NULL, `lead_id` varchar(36) DEFAULT NULL, `required` varchar(1) DEFAULT '1', `accept_status` varchar(25) DEFAULT 'none', `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_lead_call_call` (`call_id`), KEY `idx_lead_call_lead` (`lead_id`), KEY `idx_call_lead` (`call_id`,`lead_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `calls_reschedule` -- CREATE TABLE `calls_reschedule` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `reason` varchar(100) DEFAULT NULL, `call_id` char(36) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `calls_reschedule_audit` -- CREATE TABLE `calls_reschedule_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_calls_reschedule_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `calls_users` -- CREATE TABLE `calls_users` ( `id` varchar(36) NOT NULL, `call_id` varchar(36) DEFAULT NULL, `user_id` varchar(36) DEFAULT NULL, `required` varchar(1) DEFAULT '1', `accept_status` varchar(25) DEFAULT 'none', `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_usr_call_call` (`call_id`), KEY `idx_usr_call_usr` (`user_id`), KEY `idx_call_users` (`call_id`,`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `campaigns` -- CREATE TABLE `campaigns` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `tracker_key` int(11) NOT NULL AUTO_INCREMENT, `tracker_count` int(11) DEFAULT '0', `refer_url` varchar(255) DEFAULT 'http://', `tracker_text` varchar(255) DEFAULT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `status` varchar(100) DEFAULT NULL, `impressions` int(11) DEFAULT '0', `currency_id` char(36) DEFAULT NULL, `budget` double DEFAULT NULL, `expected_cost` double DEFAULT NULL, `actual_cost` double DEFAULT NULL, `expected_revenue` double DEFAULT NULL, `campaign_type` varchar(100) DEFAULT NULL, `objective` text, `content` text, `frequency` varchar(100) DEFAULT NULL, `survey_id` char(36) DEFAULT NULL, PRIMARY KEY (`id`), KEY `camp_auto_tracker_key` (`tracker_key`), KEY `idx_campaign_name` (`name`), KEY `idx_survey_id` (`survey_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `campaigns_audit` -- CREATE TABLE `campaigns_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_campaigns_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `campaign_log` -- CREATE TABLE `campaign_log` ( `id` char(36) NOT NULL, `campaign_id` char(36) DEFAULT NULL, `target_tracker_key` varchar(36) DEFAULT NULL, `target_id` varchar(36) DEFAULT NULL, `target_type` varchar(100) DEFAULT NULL, `activity_type` varchar(100) DEFAULT NULL, `activity_date` datetime DEFAULT NULL, `related_id` varchar(36) DEFAULT NULL, `related_type` varchar(100) DEFAULT NULL, `archived` tinyint(1) DEFAULT '0', `hits` int(11) DEFAULT '0', `list_id` char(36) DEFAULT NULL, `deleted` tinyint(1) DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `more_information` varchar(100) DEFAULT NULL, `marketing_id` char(36) DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_camp_tracker` (`target_tracker_key`), KEY `idx_camp_campaign_id` (`campaign_id`), KEY `idx_camp_more_info` (`more_information`), KEY `idx_target_id` (`target_id`), KEY `idx_target_id_deleted` (`target_id`,`deleted`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `campaign_trkrs` -- CREATE TABLE `campaign_trkrs` ( `id` char(36) NOT NULL, `tracker_name` varchar(255) DEFAULT NULL, `tracker_url` varchar(255) DEFAULT 'http://', `tracker_key` int(11) NOT NULL AUTO_INCREMENT, `campaign_id` char(36) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `is_optout` tinyint(1) DEFAULT '0', `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `campaign_tracker_key_idx` (`tracker_key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `cases` -- CREATE TABLE `cases` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `case_number` int(11) NOT NULL AUTO_INCREMENT, `type` varchar(255) DEFAULT NULL, `status` varchar(100) DEFAULT NULL, `priority` varchar(100) DEFAULT NULL, `resolution` text, `work_log` text, `account_id` char(36) DEFAULT NULL, `state` varchar(100) DEFAULT 'Open', `contact_created_by_id` char(36) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `casesnumk` (`case_number`), KEY `case_number` (`case_number`), KEY `idx_case_name` (`name`), KEY `idx_account_id` (`account_id`), KEY `idx_cases_stat_del` (`assigned_user_id`,`status`,`deleted`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `cases_audit` -- CREATE TABLE `cases_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_cases_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `cases_bugs` -- CREATE TABLE `cases_bugs` ( `id` varchar(36) NOT NULL, `case_id` varchar(36) DEFAULT NULL, `bug_id` varchar(36) DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_cas_bug_cas` (`case_id`), KEY `idx_cas_bug_bug` (`bug_id`), KEY `idx_case_bug` (`case_id`,`bug_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `cases_cstm` -- CREATE TABLE `cases_cstm` ( `id_c` char(36) NOT NULL, `jjwg_maps_lng_c` float(11,8) DEFAULT '0.00000000', `jjwg_maps_lat_c` float(10,8) DEFAULT '0.00000000', `jjwg_maps_geocode_status_c` varchar(255) DEFAULT NULL, `jjwg_maps_address_c` varchar(255) DEFAULT NULL, PRIMARY KEY (`id_c`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `config` -- CREATE TABLE `config` ( `category` varchar(32) DEFAULT NULL, `name` varchar(32) DEFAULT NULL, `value` text, KEY `idx_config_cat` (`category`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `config` -- INSERT INTO `config` VALUES ('notify', 'fromaddress', '[[admin_email]]'), ('notify', 'fromname', '[[site_name]]'), ('notify', 'send_by_default', '1'), ('notify', 'on', '1'), ('notify', 'send_from_assigning_user', '0'), ('info', 'sugar_version', '6.5.25'), ('MySettings', 'tab', 'YTozMjp7aTowO3M6NDoiSG9tZSI7aToxO3M6ODoiQWNjb3VudHMiO2k6MjtzOjg6IkNvbnRhY3RzIjtpOjM7czoxMzoiT3Bwb3J0dW5pdGllcyI7aTo0O3M6NToiTGVhZHMiO2k6NTtzOjEwOiJBT1NfUXVvdGVzIjtpOjY7czo4OiJDYWxlbmRhciI7aTo3O3M6OToiRG9jdW1lbnRzIjtpOjg7czo2OiJFbWFpbHMiO2k6OTtzOjk6IkNhbXBhaWducyI7aToxMDtzOjU6IkNhbGxzIjtpOjExO3M6ODoiTWVldGluZ3MiO2k6MTI7czo1OiJUYXNrcyI7aToxMztzOjU6Ik5vdGVzIjtpOjE0O3M6MTI6IkFPU19JbnZvaWNlcyI7aToxNTtzOjEzOiJBT1NfQ29udHJhY3RzIjtpOjE2O3M6NToiQ2FzZXMiO2k6MTc7czo5OiJQcm9zcGVjdHMiO2k6MTg7czoxMzoiUHJvc3BlY3RMaXN0cyI7aToxOTtzOjc6IlByb2plY3QiO2k6MjA7czoxOToiQU1fUHJvamVjdFRlbXBsYXRlcyI7aToyMTtzOjE2OiJBTV9UYXNrVGVtcGxhdGVzIjtpOjIyO3M6OToiRlBfZXZlbnRzIjtpOjIzO3M6MTg6IkZQX0V2ZW50X0xvY2F0aW9ucyI7aToyNDtzOjEyOiJBT1NfUHJvZHVjdHMiO2k6MjU7czoyMjoiQU9TX1Byb2R1Y3RfQ2F0ZWdvcmllcyI7aToyNjtzOjE3OiJBT1NfUERGX1RlbXBsYXRlcyI7aToyNztzOjExOiJBT1JfUmVwb3J0cyI7aToyODtzOjE3OiJBT0tfS25vd2xlZGdlQmFzZSI7aToyOTtzOjI5OiJBT0tfS25vd2xlZGdlX0Jhc2VfQ2F0ZWdvcmllcyI7aTozMDtzOjE0OiJFbWFpbFRlbXBsYXRlcyI7aTozMTtzOjc6IlN1cnZleXMiO30='), ('portal', 'on', '0'), ('tracker', 'Tracker', '1'), ('sugarfeed', 'enabled', '1'), ('sugarfeed', 'module_UserFeed', '1'), ('sugarfeed', 'module_Cases', '1'), ('sugarfeed', 'module_Contacts', '1'), ('sugarfeed', 'module_Leads', '1'), ('sugarfeed', 'module_Opportunities', '1'), ('Update', 'CheckUpdates', 'manual'), ('system', 'name', '[[site_name]]'), ('system', 'adminwizard', '1'); -- -------------------------------------------------------- -- -- Table structure for table `contacts` -- CREATE TABLE `contacts` ( `id` char(36) NOT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `salutation` varchar(255) DEFAULT NULL, `first_name` varchar(100) DEFAULT NULL, `last_name` varchar(100) DEFAULT NULL, `title` varchar(100) DEFAULT NULL, `photo` varchar(255) DEFAULT NULL, `department` varchar(255) DEFAULT NULL, `do_not_call` tinyint(1) DEFAULT '0', `phone_home` varchar(100) DEFAULT NULL, `phone_mobile` varchar(100) DEFAULT NULL, `phone_work` varchar(100) DEFAULT NULL, `phone_other` varchar(100) DEFAULT NULL, `phone_fax` varchar(100) DEFAULT NULL, `lawful_basis` text, `date_reviewed` date DEFAULT NULL, `lawful_basis_source` varchar(100) DEFAULT NULL, `primary_address_street` varchar(150) DEFAULT NULL, `primary_address_city` varchar(100) DEFAULT NULL, `primary_address_state` varchar(100) DEFAULT NULL, `primary_address_postalcode` varchar(20) DEFAULT NULL, `primary_address_country` varchar(255) DEFAULT NULL, `alt_address_street` varchar(150) DEFAULT NULL, `alt_address_city` varchar(100) DEFAULT NULL, `alt_address_state` varchar(100) DEFAULT NULL, `alt_address_postalcode` varchar(20) DEFAULT NULL, `alt_address_country` varchar(255) DEFAULT NULL, `assistant` varchar(75) DEFAULT NULL, `assistant_phone` varchar(100) DEFAULT NULL, `lead_source` varchar(255) DEFAULT NULL, `reports_to_id` char(36) DEFAULT NULL, `birthdate` date DEFAULT NULL, `campaign_id` char(36) DEFAULT NULL, `joomla_account_id` varchar(255) DEFAULT NULL, `portal_account_disabled` tinyint(1) DEFAULT NULL, `portal_user_type` varchar(100) DEFAULT 'Single', PRIMARY KEY (`id`), KEY `idx_cont_last_first` (`last_name`,`first_name`,`deleted`), KEY `idx_contacts_del_last` (`deleted`,`last_name`), KEY `idx_cont_del_reports` (`deleted`,`reports_to_id`,`last_name`), KEY `idx_reports_to_id` (`reports_to_id`), KEY `idx_del_id_user` (`deleted`,`id`,`assigned_user_id`), KEY `idx_cont_assigned` (`assigned_user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `contacts_audit` -- CREATE TABLE `contacts_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_contacts_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `contacts_bugs` -- CREATE TABLE `contacts_bugs` ( `id` varchar(36) NOT NULL, `contact_id` varchar(36) DEFAULT NULL, `bug_id` varchar(36) DEFAULT NULL, `contact_role` varchar(50) DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_con_bug_con` (`contact_id`), KEY `idx_con_bug_bug` (`bug_id`), KEY `idx_contact_bug` (`contact_id`,`bug_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `contacts_cases` -- CREATE TABLE `contacts_cases` ( `id` varchar(36) NOT NULL, `contact_id` varchar(36) DEFAULT NULL, `case_id` varchar(36) DEFAULT NULL, `contact_role` varchar(50) DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_con_case_con` (`contact_id`), KEY `idx_con_case_case` (`case_id`), KEY `idx_contacts_cases` (`contact_id`,`case_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `contacts_cstm` -- CREATE TABLE `contacts_cstm` ( `id_c` char(36) NOT NULL, `jjwg_maps_lng_c` float(11,8) DEFAULT '0.00000000', `jjwg_maps_lat_c` float(10,8) DEFAULT '0.00000000', `jjwg_maps_geocode_status_c` varchar(255) DEFAULT NULL, `jjwg_maps_address_c` varchar(255) DEFAULT NULL, PRIMARY KEY (`id_c`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `contacts_users` -- CREATE TABLE `contacts_users` ( `id` varchar(36) NOT NULL, `contact_id` varchar(36) DEFAULT NULL, `user_id` varchar(36) DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_con_users_con` (`contact_id`), KEY `idx_con_users_user` (`user_id`), KEY `idx_contacts_users` (`contact_id`,`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `cron_remove_documents` -- CREATE TABLE `cron_remove_documents` ( `id` varchar(36) NOT NULL, `bean_id` varchar(36) DEFAULT NULL, `module` varchar(25) DEFAULT NULL, `date_modified` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_cron_remove_document_bean_id` (`bean_id`), KEY `idx_cron_remove_document_stamp` (`date_modified`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `currencies` -- CREATE TABLE `currencies` ( `id` char(36) NOT NULL, `name` varchar(36) DEFAULT NULL, `symbol` varchar(36) DEFAULT NULL, `iso4217` varchar(3) DEFAULT NULL, `conversion_rate` double DEFAULT '0', `status` varchar(100) DEFAULT NULL, `deleted` tinyint(1) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `created_by` char(36) NOT NULL, PRIMARY KEY (`id`), KEY `idx_currency_name` (`name`,`deleted`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `custom_fields` -- CREATE TABLE `custom_fields` ( `bean_id` varchar(36) DEFAULT NULL, `set_num` int(11) DEFAULT '0', `field0` varchar(255) DEFAULT NULL, `field1` varchar(255) DEFAULT NULL, `field2` varchar(255) DEFAULT NULL, `field3` varchar(255) DEFAULT NULL, `field4` varchar(255) DEFAULT NULL, `field5` varchar(255) DEFAULT NULL, `field6` varchar(255) DEFAULT NULL, `field7` varchar(255) DEFAULT NULL, `field8` varchar(255) DEFAULT NULL, `field9` varchar(255) DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', KEY `idx_beanid_set_num` (`bean_id`,`set_num`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `documents` -- CREATE TABLE `documents` ( `id` char(36) NOT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `document_name` varchar(255) DEFAULT NULL, `doc_id` varchar(100) DEFAULT NULL, `doc_type` varchar(100) DEFAULT 'Sugar', `doc_url` varchar(255) DEFAULT NULL, `active_date` date DEFAULT NULL, `exp_date` date DEFAULT NULL, `category_id` varchar(100) DEFAULT NULL, `subcategory_id` varchar(100) DEFAULT NULL, `status_id` varchar(100) DEFAULT NULL, `document_revision_id` varchar(36) DEFAULT NULL, `related_doc_id` char(36) DEFAULT NULL, `related_doc_rev_id` char(36) DEFAULT NULL, `is_template` tinyint(1) DEFAULT '0', `template_type` varchar(100) DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_doc_cat` (`category_id`,`subcategory_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `documents_accounts` -- CREATE TABLE `documents_accounts` ( `id` varchar(36) NOT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `document_id` varchar(36) DEFAULT NULL, `account_id` varchar(36) DEFAULT NULL, PRIMARY KEY (`id`), KEY `documents_accounts_account_id` (`account_id`,`document_id`), KEY `documents_accounts_document_id` (`document_id`,`account_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `documents_bugs` -- CREATE TABLE `documents_bugs` ( `id` varchar(36) NOT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `document_id` varchar(36) DEFAULT NULL, `bug_id` varchar(36) DEFAULT NULL, PRIMARY KEY (`id`), KEY `documents_bugs_bug_id` (`bug_id`,`document_id`), KEY `documents_bugs_document_id` (`document_id`,`bug_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `documents_cases` -- CREATE TABLE `documents_cases` ( `id` varchar(36) NOT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `document_id` varchar(36) DEFAULT NULL, `case_id` varchar(36) DEFAULT NULL, PRIMARY KEY (`id`), KEY `documents_cases_case_id` (`case_id`,`document_id`), KEY `documents_cases_document_id` (`document_id`,`case_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `documents_contacts` -- CREATE TABLE `documents_contacts` ( `id` varchar(36) NOT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `document_id` varchar(36) DEFAULT NULL, `contact_id` varchar(36) DEFAULT NULL, PRIMARY KEY (`id`), KEY `documents_contacts_contact_id` (`contact_id`,`document_id`), KEY `documents_contacts_document_id` (`document_id`,`contact_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `documents_opportunities` -- CREATE TABLE `documents_opportunities` ( `id` varchar(36) NOT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `document_id` varchar(36) DEFAULT NULL, `opportunity_id` varchar(36) DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_docu_opps_oppo_id` (`opportunity_id`,`document_id`), KEY `idx_docu_oppo_docu_id` (`document_id`,`opportunity_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `document_revisions` -- CREATE TABLE `document_revisions` ( `id` varchar(36) NOT NULL, `change_log` varchar(255) DEFAULT NULL, `document_id` varchar(36) DEFAULT NULL, `doc_id` varchar(100) DEFAULT NULL, `doc_type` varchar(100) DEFAULT NULL, `doc_url` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `filename` varchar(255) DEFAULT NULL, `file_ext` varchar(100) DEFAULT NULL, `file_mime_type` varchar(100) DEFAULT NULL, `revision` varchar(100) DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `date_modified` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `documentrevision_mimetype` (`file_mime_type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `eapm` -- CREATE TABLE `eapm` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `password` varchar(255) DEFAULT NULL, `url` varchar(255) DEFAULT NULL, `application` varchar(100) DEFAULT 'webex', `api_data` text, `consumer_key` varchar(255) DEFAULT NULL, `consumer_secret` varchar(255) DEFAULT NULL, `oauth_token` varchar(255) DEFAULT NULL, `oauth_secret` varchar(255) DEFAULT NULL, `validated` tinyint(1) DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_app_active` (`assigned_user_id`,`application`,`validated`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `emailman` -- CREATE TABLE `emailman` ( `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `user_id` char(36) DEFAULT NULL, `id` int(11) NOT NULL AUTO_INCREMENT, `campaign_id` char(36) DEFAULT NULL, `marketing_id` char(36) DEFAULT NULL, `list_id` char(36) DEFAULT NULL, `send_date_time` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `in_queue` tinyint(1) DEFAULT '0', `in_queue_date` datetime DEFAULT NULL, `send_attempts` int(11) DEFAULT '0', `deleted` tinyint(1) DEFAULT '0', `related_id` char(36) DEFAULT NULL, `related_type` varchar(100) DEFAULT NULL, `related_confirm_opt_in` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_eman_list` (`list_id`,`user_id`,`deleted`), KEY `idx_eman_campaign_id` (`campaign_id`), KEY `idx_eman_relid_reltype_id` (`related_id`,`related_type`,`campaign_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `emails` -- CREATE TABLE `emails` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `orphaned` tinyint(1) DEFAULT NULL, `last_synced` datetime DEFAULT NULL, `date_sent_received` datetime DEFAULT NULL, `message_id` varchar(255) DEFAULT NULL, `type` varchar(100) DEFAULT NULL, `status` varchar(100) DEFAULT NULL, `flagged` tinyint(1) DEFAULT NULL, `reply_to_status` tinyint(1) DEFAULT NULL, `intent` varchar(100) DEFAULT 'pick', `mailbox_id` char(36) DEFAULT NULL, `parent_type` varchar(100) DEFAULT NULL, `parent_id` char(36) DEFAULT NULL, `uid` varchar(255) DEFAULT NULL, `category_id` varchar(100) DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_email_name` (`name`), KEY `idx_message_id` (`message_id`), KEY `idx_email_parent_id` (`parent_id`), KEY `idx_email_assigned` (`assigned_user_id`,`type`,`status`), KEY `idx_email_cat` (`category_id`), KEY `idx_email_uid` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `emails_beans` -- CREATE TABLE `emails_beans` ( `id` char(36) NOT NULL, `email_id` char(36) DEFAULT NULL, `bean_id` char(36) DEFAULT NULL, `bean_module` varchar(100) DEFAULT NULL, `campaign_data` text, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_emails_beans_bean_id` (`bean_id`), KEY `idx_emails_beans_email_bean` (`email_id`,`bean_id`,`deleted`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `emails_email_addr_rel` -- CREATE TABLE `emails_email_addr_rel` ( `id` char(36) NOT NULL, `email_id` char(36) NOT NULL, `address_type` varchar(4) DEFAULT NULL, `email_address_id` char(36) NOT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_eearl_email_id` (`email_id`,`address_type`), KEY `idx_eearl_address_id` (`email_address_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `emails_text` -- CREATE TABLE `emails_text` ( `email_id` char(36) NOT NULL, `from_addr` varchar(255) DEFAULT NULL, `reply_to_addr` varchar(255) DEFAULT NULL, `to_addrs` text, `cc_addrs` text, `bcc_addrs` text, `description` longtext, `description_html` longtext, `raw_source` longtext, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`email_id`), KEY `emails_textfromaddr` (`from_addr`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `email_addresses` -- CREATE TABLE `email_addresses` ( `id` char(36) NOT NULL, `email_address` varchar(255) DEFAULT NULL, `email_address_caps` varchar(255) DEFAULT NULL, `invalid_email` tinyint(1) DEFAULT '0', `opt_out` tinyint(1) DEFAULT '0', `confirm_opt_in` varchar(255) DEFAULT 'not-opt-in', `confirm_opt_in_date` datetime DEFAULT NULL, `confirm_opt_in_sent_date` datetime DEFAULT NULL, `confirm_opt_in_fail_date` datetime DEFAULT NULL, `confirm_opt_in_token` varchar(255) DEFAULT NULL, `date_created` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_ea_caps_opt_out_invalid` (`email_address_caps`,`opt_out`,`invalid_email`), KEY `idx_ea_opt_out_invalid` (`email_address`,`opt_out`,`invalid_email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `email_addresses_audit` -- CREATE TABLE `email_addresses_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_email_addresses_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `email_addr_bean_rel` -- CREATE TABLE `email_addr_bean_rel` ( `id` char(36) NOT NULL, `email_address_id` char(36) NOT NULL, `bean_id` char(36) NOT NULL, `bean_module` varchar(100) DEFAULT NULL, `primary_address` tinyint(1) DEFAULT '0', `reply_to_address` tinyint(1) DEFAULT '0', `date_created` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_email_address_id` (`email_address_id`), KEY `idx_bean_id` (`bean_id`,`bean_module`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `email_cache` -- CREATE TABLE `email_cache` ( `ie_id` char(36) DEFAULT NULL, `mbox` varchar(60) DEFAULT NULL, `subject` varchar(255) DEFAULT NULL, `fromaddr` varchar(100) DEFAULT NULL, `toaddr` varchar(255) DEFAULT NULL, `senddate` datetime DEFAULT NULL, `message_id` varchar(255) DEFAULT NULL, `mailsize` int(10) unsigned DEFAULT NULL, `imap_uid` int(10) unsigned DEFAULT NULL, `msgno` int(10) unsigned DEFAULT NULL, `recent` tinyint(4) DEFAULT NULL, `flagged` tinyint(4) DEFAULT NULL, `answered` tinyint(4) DEFAULT NULL, `deleted` tinyint(4) DEFAULT NULL, `seen` tinyint(4) DEFAULT NULL, `draft` tinyint(4) DEFAULT NULL, KEY `idx_ie_id` (`ie_id`), KEY `idx_mail_date` (`ie_id`,`mbox`,`senddate`), KEY `idx_mail_from` (`ie_id`,`mbox`,`fromaddr`), KEY `idx_mail_subj` (`subject`), KEY `idx_mail_to` (`toaddr`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `email_marketing` -- CREATE TABLE `email_marketing` ( `id` char(36) NOT NULL, `deleted` tinyint(1) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `name` varchar(255) DEFAULT NULL, `from_name` varchar(100) DEFAULT NULL, `from_addr` varchar(100) DEFAULT NULL, `reply_to_name` varchar(100) DEFAULT NULL, `reply_to_addr` varchar(100) DEFAULT NULL, `inbound_email_id` varchar(36) DEFAULT NULL, `date_start` datetime DEFAULT NULL, `template_id` char(36) NOT NULL, `status` varchar(100) DEFAULT NULL, `campaign_id` char(36) DEFAULT NULL, `outbound_email_id` char(36) DEFAULT NULL, `all_prospect_lists` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_emmkt_name` (`name`), KEY `idx_emmkit_del` (`deleted`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `email_marketing_prospect_lists` -- CREATE TABLE `email_marketing_prospect_lists` ( `id` varchar(36) NOT NULL, `prospect_list_id` varchar(36) DEFAULT NULL, `email_marketing_id` varchar(36) DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `email_mp_prospects` (`email_marketing_id`,`prospect_list_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `email_templates` -- CREATE TABLE `email_templates` ( `id` char(36) NOT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `published` varchar(3) DEFAULT NULL, `name` varchar(255) DEFAULT NULL, `description` text, `subject` varchar(255) DEFAULT NULL, `body` longtext, `body_html` longtext, `deleted` tinyint(1) DEFAULT NULL, `assigned_user_id` char(36) DEFAULT NULL, `text_only` tinyint(1) DEFAULT NULL, `type` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_email_template_name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `email_templates` -- INSERT INTO `email_templates` VALUES ('[[email_confirm_opt_in_email_template_id]]', '[[regtime]]', '[[regtime]]', '1', '1', 'off', 'Confirmed Opt In', 'Email template to send to a contact to confirm they have opted in.', 'Confirm Opt In', 'Hi $contact_first_name $contact_last_name, \\n Please confirm that you have opted in by selecting the following link: $sugarurl/index.php?entryPoint=ConfirmOptIn&from=$emailaddress_email_address', '<p>Hi $contact_first_name $contact_last_name,</p>\n <p>\n Please confirm that you have opted in by selecting the following link:\n <a href="$sugarurl/index.php?entryPoint=ConfirmOptIn&from=$emailaddress_confirm_opt_in_token">Opt In</a>\n </p>', 0, NULL, NULL, 'system'), ('[[generatepasswordtmpl]]', '[[regtime]]', '[[regtime]]', '1', '1', 'off', 'System-generated password email', 'This template is used when the System Administrator sends a new password to a user.', 'New account information', '\nHere is your account username and temporary password:\nUsername : $contact_user_user_name\nPassword : $contact_user_user_hash\n\n$config_site_url\n\nAfter you log in using the above password, you may be required to reset the password to one of your own choice.', '<div><table width="550"><tbody><tr><td><p>Here is your account username and temporary password:</p><p>Username : $contact_user_user_name </p><p>Password : $contact_user_user_hash </p><br /><p>$config_site_url</p><br /><p>After you log in using the above password, you may be required to reset the password to one of your own choice.</p> </td> </tr><tr><td></td> </tr> </tbody></table> </div>', 0, NULL, 0, 'system'), ('[[lostpasswordtmpl]]', '[[regtime]]', '[[regtime]]', '1', '1', 'off', 'Forgot Password email', 'This template is used to send a user a link to click to reset the user''s account password.', 'Reset your account password', '\nYou recently requested on $contact_user_pwd_last_changed to be able to reset your account password.\n\nClick on the link below to reset your password:\n\n$contact_user_link_guid', '<div><table width="550"><tbody><tr><td><p>You recently requested on $contact_user_pwd_last_changed to be able to reset your account password. </p><p>Click on the link below to reset your password:</p><p> $contact_user_link_guid </p> </td> </tr><tr><td></td> </tr> </tbody></table> </div>', 0, NULL, 0, 'system'), ('[[factoremailtmpl]]', '[[regtime]]', '[[regtime]]', '1', '1', 'off', 'Two Factor Authentication email', 'This template is used to send a user a code for Two Factor Authentication.', 'Two Factor Authentication Code', 'Two Factor Authentication code is $code.', '<div><table width="550"><tbody><tr><td><p>Two Factor Authentication code is <b>$code</b>.</p> </td> </tr><tr><td></td> </tr> </tbody></table> </div>', 0, NULL, 0, 'system'), ('[[case_closure_email_template_id]]', '[[regtime]]', '[[regtime]]', '1', '1', 'off', 'Case Closure', 'Template for informing a contact that their case has been closed.', '$acase_name [CASE:$acase_case_number] closed', 'Hi $contact_first_name $contact_last_name,\n\n Your case $acase_name (# $acase_case_number) has been closed on $acase_date_entered\n Status: $acase_status\n Reference: $acase_case_number\n Resolution: $acase_resolution', '<p> Hi $contact_first_name $contact_last_name,</p>\n <p>Your case $acase_name (# $acase_case_number) has been closed on $acase_date_entered</p>\n <table border="0"><tbody>\n <tr><td>Status</td><td>$acase_status</td></tr>\n <tr><td>Reference</td><td>$acase_case_number</td></tr>\n <tr><td>Resolution</td><td>$acase_resolution</td></tr>\n </tbody></table>', 0, NULL, NULL, 'system'), ('[[joomla_account_creation_email_template_id]]', '[[regtime]]', '[[regtime]]', '1', '1', 'off', 'Joomla Account Creation', 'Template used when informing a contact that they''ve been given an account on the joomla portal.', 'Support Portal Account Created', 'Hi $contact_name,\n An account has been created for you at $portal_address.\n You may login using this email address and the password $joomla_pass', '<p>Hi $contact_name,</p>\n <p>An account has been created for you at <a href="$portal_address">$portal_address</a>.</p>\n <p>You may login using this email address and the password $joomla_pass</p>', 0, NULL, NULL, 'system'), ('[[case_creation_email_template_id]]', '[[regtime]]', '[[regtime]]', '1', '1', 'off', 'Case Creation', 'Template to send to a contact when a case is received from them.', '$acase_name [CASE:$acase_case_number]', 'Hi $contact_first_name $contact_last_name,\n\n We''ve received your case $acase_name (# $acase_case_number) on $acase_date_entered\n Status: $acase_status\n Reference: $acase_case_number\n Description: $acase_description', '<p> Hi $contact_first_name $contact_last_name,</p>\n <p>We''ve received your case $acase_name (# $acase_case_number) on $acase_date_entered</p>\n <table border="0"><tbody>\n <tr><td>Status</td><td>$acase_status</td></tr>\n <tr><td>Reference</td><td>$acase_case_number</td></tr>\n <tr><td>Description</td><td>$acase_description</td></tr>\n </tbody></table>', 0, NULL, NULL, 'system'), ('[[contact_email_template_id]]', '[[regtime]]', '[[regtime]]', '1', '1', 'off', 'Contact Case Update', 'Template to send to a contact when their case is updated.', '$acase_name update [CASE:$acase_case_number]', 'Hi $user_first_name $user_last_name,\n\n You''ve had an update to your case $acase_name (# $acase_case_number) on $aop_case_updates_date_entered:\n $contact_first_name $contact_last_name, said:\n $aop_case_updates_description', '<p>Hi $contact_first_name $contact_last_name,</p>\n <p> </p>\n <p>You''ve had an update to your case $acase_name (# $acase_case_number) on $aop_case_updates_date_entered:</p>\n <p><strong>$user_first_name $user_last_name said:</strong></p>\n <p style="padding-left:30px;">$aop_case_updates_description</p>', 0, NULL, NULL, 'system'), ('[[user_email_template_id]]', '[[regtime]]', '[[regtime]]', '1', '1', 'off', 'User Case Update', 'Email template to send to a SuiteCRM user when their case is updated.', '$acase_name (# $acase_case_number) update', 'Hi $user_first_name $user_last_name,\n\n You''ve had an update to your case $acase_name (# $acase_case_number) on $aop_case_updates_date_entered:\n $contact_first_name $contact_last_name, said:\n $aop_case_updates_description\n You may review this Case at:\n $sugarurl/index.php?module=Cases&action=DetailView&record=$acase_id;', '<p>Hi $user_first_name $user_last_name,</p>\n <p> </p>\n <p>You''ve had an update to your case $acase_name (# $acase_case_number) on $aop_case_updates_date_entered:</p>\n <p><strong>$contact_first_name $contact_last_name, said:</strong></p>\n <p style="padding-left:30px;">$aop_case_updates_description</p>\n <p>You may review this Case at: $sugarurl/index.php?module=Cases&action=DetailView&record=$acase_id;</p>', 0, NULL, NULL, 'system'), ('e3ced014-23ac-cb9f-2727-679c68bc79c1', '2013-05-24 14:31:45', '[[regtime]]', '1', '1', 'off', 'Event Invite Template', 'Default event invite template.', 'You have been invited to $fp_events_name', 'Dear $contact_name,\nYou have been invited to $fp_events_name on $fp_events_date_start to $fp_events_date_end\n$fp_events_description\nYours Sincerely,\n', '\n<p>Dear $contact_name,</p>\n<p>You have been invited to $fp_events_name on $fp_events_date_start to $fp_events_date_end</p>\n<p>$fp_events_description</p>\n<p>If you would like to accept this invititation please click accept.</p>\n<p> $fp_events_link or $fp_events_link_declined</p>\n<p>Yours Sincerely,</p>\n', 0, NULL, NULL, 'system'); -- -------------------------------------------------------- -- -- Table structure for table `external_oauth_connections` -- CREATE TABLE `external_oauth_connections` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `type` varchar(255) DEFAULT NULL, `client_id` varchar(32) DEFAULT NULL, `client_secret` varchar(32) DEFAULT NULL, `token_type` varchar(32) DEFAULT NULL, `expires_in` varchar(32) DEFAULT NULL, `access_token` text, `refresh_token` text, `external_oauth_provider_id` char(36) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `external_oauth_providers` -- CREATE TABLE `external_oauth_providers` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `type` varchar(255) DEFAULT NULL, `connector` varchar(255) DEFAULT NULL, `client_id` varchar(255) DEFAULT NULL, `client_secret` varchar(255) DEFAULT NULL, `scope` text, `url_authorize` varchar(255) DEFAULT NULL, `authorize_url_options` text, `url_access_token` varchar(255) DEFAULT NULL, `extra_provider_params` text, `get_token_request_grant` varchar(255) DEFAULT 'authorization_code', `get_token_request_options` text, `refresh_token_request_grant` varchar(255) DEFAULT 'refresh_token', `refresh_token_request_options` text, `access_token_mapping` varchar(255) DEFAULT 'access_token', `expires_in_mapping` varchar(255) DEFAULT 'expires_in', `refresh_token_mapping` varchar(255) DEFAULT 'refresh_token', `token_type_mapping` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `favorites` -- CREATE TABLE `favorites` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `parent_id` char(36) DEFAULT NULL, `parent_type` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `fields_meta_data` -- CREATE TABLE `fields_meta_data` ( `id` varchar(255) NOT NULL, `name` varchar(255) DEFAULT NULL, `vname` varchar(255) DEFAULT NULL, `comments` varchar(255) DEFAULT NULL, `help` varchar(255) DEFAULT NULL, `custom_module` varchar(255) DEFAULT NULL, `type` varchar(255) DEFAULT NULL, `len` int(11) DEFAULT NULL, `required` tinyint(1) DEFAULT '0', `default_value` varchar(255) DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `audited` tinyint(1) DEFAULT '0', `massupdate` tinyint(1) DEFAULT '0', `duplicate_merge` smallint(6) DEFAULT '0', `reportable` tinyint(1) DEFAULT '1', `importable` varchar(255) DEFAULT NULL, `ext1` varchar(255) DEFAULT NULL, `ext2` varchar(255) DEFAULT NULL, `ext3` varchar(255) DEFAULT NULL, `ext4` text, PRIMARY KEY (`id`), KEY `idx_meta_id_del` (`id`,`deleted`), KEY `idx_meta_cm_del` (`custom_module`,`deleted`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `fields_meta_data` -- INSERT INTO `fields_meta_data` VALUES ('Accountsjjwg_maps_address_c', 'jjwg_maps_address_c', 'LBL_JJWG_MAPS_ADDRESS', 'Address', 'Address', 'Accounts', 'varchar', 255, 0, NULL, '[[regtime]]', 0, 0, 0, 0, 1, 'true', NULL, '', '', ''), ('Accountsjjwg_maps_geocode_status_c', 'jjwg_maps_geocode_status_c', 'LBL_JJWG_MAPS_GEOCODE_STATUS', 'Geocode Status', 'Geocode Status', 'Accounts', 'varchar', 255, 0, NULL, '[[regtime]]', 0, 0, 0, 0, 1, 'true', NULL, '', '', ''), ('Accountsjjwg_maps_lat_c', 'jjwg_maps_lat_c', 'LBL_JJWG_MAPS_LAT', '', 'Latitude', 'Accounts', 'float', 10, 0, '0.00000000', '[[regtime]]', 0, 0, 0, 0, 1, 'true', '8', '', '', ''), ('Accountsjjwg_maps_lng_c', 'jjwg_maps_lng_c', 'LBL_JJWG_MAPS_LNG', '', 'Longitude', 'Accounts', 'float', 11, 0, '0.00000000', '[[regtime]]', 0, 0, 0, 0, 1, 'true', '8', '', '', ''), ('Casesjjwg_maps_address_c', 'jjwg_maps_address_c', 'LBL_JJWG_MAPS_ADDRESS', 'Address', 'Address', 'Cases', 'varchar', 255, 0, NULL, '[[regtime]]', 0, 0, 0, 0, 1, 'true', NULL, '', '', ''), ('Casesjjwg_maps_geocode_status_c', 'jjwg_maps_geocode_status_c', 'LBL_JJWG_MAPS_GEOCODE_STATUS', 'Geocode Status', 'Geocode Status', 'Cases', 'varchar', 255, 0, NULL, '[[regtime]]', 0, 0, 0, 0, 1, 'true', NULL, '', '', ''), ('Casesjjwg_maps_lat_c', 'jjwg_maps_lat_c', 'LBL_JJWG_MAPS_LAT', '', 'Latitude', 'Cases', 'float', 10, 0, '0.00000000', '[[regtime]]', 0, 0, 0, 0, 1, 'true', '8', '', '', ''), ('Casesjjwg_maps_lng_c', 'jjwg_maps_lng_c', 'LBL_JJWG_MAPS_LNG', '', 'Longitude', 'Cases', 'float', 11, 0, '0.00000000', '[[regtime]]', 0, 0, 0, 0, 1, 'true', '8', '', '', ''), ('Contactsjjwg_maps_address_c', 'jjwg_maps_address_c', 'LBL_JJWG_MAPS_ADDRESS', 'Address', 'Address', 'Contacts', 'varchar', 255, 0, NULL, '[[regtime]]', 0, 0, 0, 0, 1, 'true', NULL, '', '', ''), ('Contactsjjwg_maps_geocode_status_c', 'jjwg_maps_geocode_status_c', 'LBL_JJWG_MAPS_GEOCODE_STATUS', 'Geocode Status', 'Geocode Status', 'Contacts', 'varchar', 255, 0, NULL, '[[regtime]]', 0, 0, 0, 0, 1, 'true', NULL, '', '', ''), ('Contactsjjwg_maps_lat_c', 'jjwg_maps_lat_c', 'LBL_JJWG_MAPS_LAT', '', 'Latitude', 'Contacts', 'float', 10, 0, '0.00000000', '[[regtime]]', 0, 0, 0, 0, 1, 'true', '8', '', '', ''), ('Contactsjjwg_maps_lng_c', 'jjwg_maps_lng_c', 'LBL_JJWG_MAPS_LNG', '', 'Longitude', 'Contacts', 'float', 11, 0, '0.00000000', '[[regtime]]', 0, 0, 0, 0, 1, 'true', '8', '', '', ''), ('Leadsjjwg_maps_address_c', 'jjwg_maps_address_c', 'LBL_JJWG_MAPS_ADDRESS', 'Address', 'Address', 'Leads', 'varchar', 255, 0, NULL, '[[regtime]]', 0, 0, 0, 0, 1, 'true', NULL, '', '', ''), ('Leadsjjwg_maps_geocode_status_c', 'jjwg_maps_geocode_status_c', 'LBL_JJWG_MAPS_GEOCODE_STATUS', 'Geocode Status', 'Geocode Status', 'Leads', 'varchar', 255, 0, NULL, '[[regtime]]', 0, 0, 0, 0, 1, 'true', NULL, '', '', ''), ('Leadsjjwg_maps_lat_c', 'jjwg_maps_lat_c', 'LBL_JJWG_MAPS_LAT', '', 'Latitude', 'Leads', 'float', 10, 0, '0.00000000', '[[regtime]]', 0, 0, 0, 0, 1, 'true', '8', '', '', ''), ('Leadsjjwg_maps_lng_c', 'jjwg_maps_lng_c', 'LBL_JJWG_MAPS_LNG', '', 'Longitude', 'Leads', 'float', 11, 0, '0.00000000', '[[regtime]]', 0, 0, 0, 0, 1, 'true', '8', '', '', ''), ('Meetingsjjwg_maps_address_c', 'jjwg_maps_address_c', 'LBL_JJWG_MAPS_ADDRESS', 'Address', 'Address', 'Meetings', 'varchar', 255, 0, NULL, '[[regtime]]', 0, 0, 0, 0, 1, 'true', NULL, '', '', ''), ('Meetingsjjwg_maps_geocode_status_c', 'jjwg_maps_geocode_status_c', 'LBL_JJWG_MAPS_GEOCODE_STATUS', 'Geocode Status', 'Geocode Status', 'Meetings', 'varchar', 255, 0, NULL, '[[regtime]]', 0, 0, 0, 0, 1, 'true', NULL, '', '', ''), ('Meetingsjjwg_maps_lat_c', 'jjwg_maps_lat_c', 'LBL_JJWG_MAPS_LAT', '', 'Latitude', 'Meetings', 'float', 10, 0, '0.00000000', '[[regtime]]', 0, 0, 0, 0, 1, 'true', '8', '', '', ''), ('Meetingsjjwg_maps_lng_c', 'jjwg_maps_lng_c', 'LBL_JJWG_MAPS_LNG', '', 'Longitude', 'Meetings', 'float', 11, 0, '0.00000000', '[[regtime]]', 0, 0, 0, 0, 1, 'true', '8', '', '', ''), ('Opportunitiesjjwg_maps_address_c', 'jjwg_maps_address_c', 'LBL_JJWG_MAPS_ADDRESS', 'Address', 'Address', 'Opportunities', 'varchar', 255, 0, NULL, '[[regtime]]', 0, 0, 0, 0, 1, 'true', NULL, '', '', ''), ('Opportunitiesjjwg_maps_geocode_status_c', 'jjwg_maps_geocode_status_c', 'LBL_JJWG_MAPS_GEOCODE_STATUS', 'Geocode Status', 'Geocode Status', 'Opportunities', 'varchar', 255, 0, NULL, '[[regtime]]', 0, 0, 0, 0, 1, 'true', NULL, '', '', ''), ('Opportunitiesjjwg_maps_lat_c', 'jjwg_maps_lat_c', 'LBL_JJWG_MAPS_LAT', '', 'Latitude', 'Opportunities', 'float', 10, 0, '0.00000000', '[[regtime]]', 0, 0, 0, 0, 1, 'true', '8', '', '', ''), ('Opportunitiesjjwg_maps_lng_c', 'jjwg_maps_lng_c', 'LBL_JJWG_MAPS_LNG', '', 'Longitude', 'Opportunities', 'float', 11, 0, '0.00000000', '[[regtime]]', 0, 0, 0, 0, 1, 'true', '8', '', '', ''), ('Projectjjwg_maps_address_c', 'jjwg_maps_address_c', 'LBL_JJWG_MAPS_ADDRESS', 'Address', 'Address', 'Project', 'varchar', 255, 0, NULL, '[[regtime]]', 0, 0, 0, 0, 1, 'true', NULL, '', '', ''), ('Projectjjwg_maps_geocode_status_c', 'jjwg_maps_geocode_status_c', 'LBL_JJWG_MAPS_GEOCODE_STATUS', 'Geocode Status', 'Geocode Status', 'Project', 'varchar', 255, 0, NULL, '[[regtime]]', 0, 0, 0, 0, 1, 'true', NULL, '', '', ''), ('Projectjjwg_maps_lat_c', 'jjwg_maps_lat_c', 'LBL_JJWG_MAPS_LAT', '', 'Latitude', 'Project', 'float', 10, 0, '0.00000000', '[[regtime]]', 0, 0, 0, 0, 1, 'true', '8', '', '', ''), ('Projectjjwg_maps_lng_c', 'jjwg_maps_lng_c', 'LBL_JJWG_MAPS_LNG', '', 'Longitude', 'Project', 'float', 11, 0, '0.00000000', '[[regtime]]', 0, 0, 0, 0, 1, 'true', '8', '', '', ''), ('Prospectsjjwg_maps_address_c', 'jjwg_maps_address_c', 'LBL_JJWG_MAPS_ADDRESS', 'Address', 'Address', 'Prospects', 'varchar', 255, 0, NULL, '[[regtime]]', 0, 0, 0, 0, 1, 'true', NULL, '', '', ''), ('Prospectsjjwg_maps_geocode_status_c', 'jjwg_maps_geocode_status_c', 'LBL_JJWG_MAPS_GEOCODE_STATUS', 'Geocode Status', 'Geocode Status', 'Prospects', 'varchar', 255, 0, NULL, '[[regtime]]', 0, 0, 0, 0, 1, 'true', NULL, '', '', ''), ('Prospectsjjwg_maps_lat_c', 'jjwg_maps_lat_c', 'LBL_JJWG_MAPS_LAT', '', 'Latitude', 'Prospects', 'float', 10, 0, '0.00000000', '[[regtime]]', 0, 0, 0, 0, 1, 'true', '8', '', '', ''), ('Prospectsjjwg_maps_lng_c', 'jjwg_maps_lng_c', 'LBL_JJWG_MAPS_LNG', '', 'Longitude', 'Prospects', 'float', 11, 0, '0.00000000', '[[regtime]]', 0, 0, 0, 0, 1, 'true', '8', '', '', ''); -- -------------------------------------------------------- -- -- Table structure for table `folders` -- CREATE TABLE `folders` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `folder_type` varchar(25) DEFAULT NULL, `parent_folder` char(36) DEFAULT NULL, `has_child` tinyint(1) DEFAULT '0', `is_group` tinyint(1) DEFAULT '0', `is_dynamic` tinyint(1) DEFAULT '0', `dynamic_query` text, `assign_to_id` char(36) DEFAULT NULL, `created_by` char(36) NOT NULL, `modified_by` char(36) NOT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_parent_folder` (`parent_folder`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `folders_rel` -- CREATE TABLE `folders_rel` ( `id` char(36) NOT NULL, `folder_id` char(36) NOT NULL, `polymorphic_module` varchar(25) DEFAULT NULL, `polymorphic_id` char(36) NOT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_poly_module_poly_id` (`polymorphic_module`,`polymorphic_id`), KEY `idx_fr_id_deleted_poly` (`folder_id`,`deleted`,`polymorphic_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `folders_subscriptions` -- CREATE TABLE `folders_subscriptions` ( `id` char(36) NOT NULL, `folder_id` char(36) NOT NULL, `assigned_user_id` char(36) NOT NULL, PRIMARY KEY (`id`), KEY `idx_folder_id_assigned_user_id` (`folder_id`,`assigned_user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `fp_events` -- CREATE TABLE `fp_events` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `duration_hours` int(3) DEFAULT NULL, `duration_minutes` int(2) DEFAULT NULL, `date_start` datetime DEFAULT NULL, `date_end` datetime DEFAULT NULL, `budget` decimal(26,6) DEFAULT NULL, `currency_id` char(36) DEFAULT NULL, `invite_templates` varchar(100) DEFAULT NULL, `accept_redirect` varchar(255) DEFAULT NULL, `decline_redirect` varchar(255) DEFAULT NULL, `activity_status_type` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `fp_events_audit` -- CREATE TABLE `fp_events_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_fp_events_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `fp_events_contacts_c` -- CREATE TABLE `fp_events_contacts_c` ( `id` varchar(36) NOT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `fp_events_contactsfp_events_ida` varchar(36) DEFAULT NULL, `fp_events_contactscontacts_idb` varchar(36) DEFAULT NULL, `invite_status` varchar(25) DEFAULT 'Not Invited', `accept_status` varchar(25) DEFAULT 'No Response', `email_responded` int(2) DEFAULT '0', PRIMARY KEY (`id`), KEY `fp_events_contacts_alt` (`fp_events_contactsfp_events_ida`,`fp_events_contactscontacts_idb`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `fp_events_fp_event_delegates_1_c` -- CREATE TABLE `fp_events_fp_event_delegates_1_c` ( `id` varchar(36) NOT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `fp_events_fp_event_delegates_1fp_events_ida` varchar(36) DEFAULT NULL, `fp_events_fp_event_delegates_1fp_event_delegates_idb` varchar(36) DEFAULT NULL, PRIMARY KEY (`id`), KEY `fp_events_fp_event_delegates_1_ida1` (`fp_events_fp_event_delegates_1fp_events_ida`), KEY `fp_events_fp_event_delegates_1_alt` (`fp_events_fp_event_delegates_1fp_event_delegates_idb`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `fp_events_fp_event_locations_1_c` -- CREATE TABLE `fp_events_fp_event_locations_1_c` ( `id` varchar(36) NOT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `fp_events_fp_event_locations_1fp_events_ida` varchar(36) DEFAULT NULL, `fp_events_fp_event_locations_1fp_event_locations_idb` varchar(36) DEFAULT NULL, PRIMARY KEY (`id`), KEY `fp_events_fp_event_locations_1_alt` (`fp_events_fp_event_locations_1fp_events_ida`,`fp_events_fp_event_locations_1fp_event_locations_idb`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `fp_events_leads_1_c` -- CREATE TABLE `fp_events_leads_1_c` ( `id` varchar(36) NOT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `fp_events_leads_1fp_events_ida` varchar(36) DEFAULT NULL, `fp_events_leads_1leads_idb` varchar(36) DEFAULT NULL, `invite_status` varchar(25) DEFAULT 'Not Invited', `accept_status` varchar(25) DEFAULT 'No Response', `email_responded` int(2) DEFAULT '0', PRIMARY KEY (`id`), KEY `fp_events_leads_1_alt` (`fp_events_leads_1fp_events_ida`,`fp_events_leads_1leads_idb`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `fp_events_prospects_1_c` -- CREATE TABLE `fp_events_prospects_1_c` ( `id` varchar(36) NOT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `fp_events_prospects_1fp_events_ida` varchar(36) DEFAULT NULL, `fp_events_prospects_1prospects_idb` varchar(36) DEFAULT NULL, `invite_status` varchar(25) DEFAULT 'Not Invited', `accept_status` varchar(25) DEFAULT 'No Response', `email_responded` int(2) DEFAULT '0', PRIMARY KEY (`id`), KEY `fp_events_prospects_1_alt` (`fp_events_prospects_1fp_events_ida`,`fp_events_prospects_1prospects_idb`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `fp_event_locations` -- CREATE TABLE `fp_event_locations` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `address` varchar(255) DEFAULT NULL, `address_city` varchar(100) DEFAULT NULL, `address_country` varchar(100) DEFAULT NULL, `address_postalcode` varchar(20) DEFAULT NULL, `address_state` varchar(100) DEFAULT NULL, `capacity` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `fp_event_locations_audit` -- CREATE TABLE `fp_event_locations_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_fp_event_locations_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `fp_event_locations_fp_events_1_c` -- CREATE TABLE `fp_event_locations_fp_events_1_c` ( `id` varchar(36) NOT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `fp_event_locations_fp_events_1fp_event_locations_ida` varchar(36) DEFAULT NULL, `fp_event_locations_fp_events_1fp_events_idb` varchar(36) DEFAULT NULL, PRIMARY KEY (`id`), KEY `fp_event_locations_fp_events_1_ida1` (`fp_event_locations_fp_events_1fp_event_locations_ida`), KEY `fp_event_locations_fp_events_1_alt` (`fp_event_locations_fp_events_1fp_events_idb`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `import_maps` -- CREATE TABLE `import_maps` ( `id` char(36) NOT NULL, `name` varchar(254) DEFAULT NULL, `source` varchar(36) DEFAULT NULL, `enclosure` varchar(1) DEFAULT ' ', `delimiter` varchar(1) DEFAULT ',', `module` varchar(36) DEFAULT NULL, `content` text, `default_values` text, `has_header` tinyint(1) DEFAULT '1', `deleted` tinyint(1) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `assigned_user_id` char(36) DEFAULT NULL, `is_published` varchar(3) DEFAULT 'no', PRIMARY KEY (`id`), KEY `idx_owner_module_name` (`assigned_user_id`,`module`,`name`,`deleted`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `inbound_email` -- CREATE TABLE `inbound_email` ( `id` varchar(36) NOT NULL, `deleted` tinyint(1) DEFAULT '0', `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `name` varchar(255) DEFAULT NULL, `status` varchar(100) DEFAULT 'Active', `email_body_filtering` varchar(255) DEFAULT 'multi', `server_url` varchar(100) DEFAULT NULL, `connection_string` varchar(255) DEFAULT NULL, `email_user` varchar(100) DEFAULT NULL, `email_password` varchar(100) DEFAULT NULL, `port` int(5) DEFAULT '143', `service` varchar(50) DEFAULT NULL, `mailbox` text, `sentFolder` varchar(255) DEFAULT NULL, `trashFolder` varchar(255) DEFAULT NULL, `delete_seen` tinyint(1) DEFAULT '0', `move_messages_to_trash_after_import` tinyint(1) DEFAULT '0', `mailbox_type` varchar(10) DEFAULT NULL, `template_id` char(36) DEFAULT NULL, `stored_options` text, `group_id` char(36) DEFAULT NULL, `is_personal` tinyint(1) DEFAULT '0', `groupfolder_id` char(36) DEFAULT NULL, `type` varchar(255) DEFAULT NULL, `auth_type` varchar(255) DEFAULT 'basic', `protocol` varchar(255) DEFAULT 'imap', `is_ssl` tinyint(1) DEFAULT '0', `distribution_user_id` char(36) DEFAULT NULL, `outbound_email_id` char(36) DEFAULT NULL, `create_case_template_id` char(36) DEFAULT NULL, `external_oauth_connection_id` char(36) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `inbound_email_autoreply` -- CREATE TABLE `inbound_email_autoreply` ( `id` char(36) NOT NULL, `deleted` tinyint(1) DEFAULT '0', `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `autoreplied_to` varchar(100) DEFAULT NULL, `ie_id` char(36) NOT NULL, PRIMARY KEY (`id`), KEY `idx_ie_autoreplied_to` (`autoreplied_to`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `inbound_email_cache_ts` -- CREATE TABLE `inbound_email_cache_ts` ( `id` varchar(255) NOT NULL, `ie_timestamp` int(10) unsigned DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `jjwg_address_cache` -- CREATE TABLE `jjwg_address_cache` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `lat` float(10,8) DEFAULT NULL, `lng` float(11,8) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `jjwg_address_cache_audit` -- CREATE TABLE `jjwg_address_cache_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_jjwg_address_cache_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `jjwg_areas` -- CREATE TABLE `jjwg_areas` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `city` varchar(255) DEFAULT NULL, `state` varchar(255) DEFAULT NULL, `country` varchar(255) DEFAULT NULL, `coordinates` text, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `jjwg_areas_audit` -- CREATE TABLE `jjwg_areas_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_jjwg_areas_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `jjwg_maps` -- CREATE TABLE `jjwg_maps` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `distance` float(9,4) DEFAULT NULL, `unit_type` varchar(100) DEFAULT 'mi', `module_type` varchar(100) DEFAULT 'Accounts', `parent_type` varchar(255) DEFAULT NULL, `parent_id` char(36) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `jjwg_maps_audit` -- CREATE TABLE `jjwg_maps_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_jjwg_maps_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `jjwg_maps_jjwg_areas_c` -- CREATE TABLE `jjwg_maps_jjwg_areas_c` ( `id` varchar(36) NOT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `jjwg_maps_5304wg_maps_ida` varchar(36) DEFAULT NULL, `jjwg_maps_41f2g_areas_idb` varchar(36) DEFAULT NULL, PRIMARY KEY (`id`), KEY `jjwg_maps_jjwg_areas_alt` (`jjwg_maps_5304wg_maps_ida`,`jjwg_maps_41f2g_areas_idb`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `jjwg_maps_jjwg_markers_c` -- CREATE TABLE `jjwg_maps_jjwg_markers_c` ( `id` varchar(36) NOT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `jjwg_maps_b229wg_maps_ida` varchar(36) DEFAULT NULL, `jjwg_maps_2e31markers_idb` varchar(36) DEFAULT NULL, PRIMARY KEY (`id`), KEY `jjwg_maps_jjwg_markers_alt` (`jjwg_maps_b229wg_maps_ida`,`jjwg_maps_2e31markers_idb`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `jjwg_markers` -- CREATE TABLE `jjwg_markers` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `city` varchar(255) DEFAULT NULL, `state` varchar(255) DEFAULT NULL, `country` varchar(255) DEFAULT NULL, `jjwg_maps_lat` float(10,8) DEFAULT '0.00000000', `jjwg_maps_lng` float(11,8) DEFAULT '0.00000000', `marker_image` varchar(100) DEFAULT 'company', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `jjwg_markers_audit` -- CREATE TABLE `jjwg_markers_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_jjwg_markers_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `job_queue` -- CREATE TABLE `job_queue` ( `assigned_user_id` char(36) DEFAULT NULL, `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `scheduler_id` char(36) DEFAULT NULL, `execute_time` datetime DEFAULT NULL, `status` varchar(20) DEFAULT NULL, `resolution` varchar(20) DEFAULT NULL, `message` text, `target` varchar(255) DEFAULT NULL, `data` text, `requeue` tinyint(1) DEFAULT '0', `retry_count` tinyint(4) DEFAULT NULL, `failure_count` tinyint(4) DEFAULT NULL, `job_delay` int(11) DEFAULT NULL, `client` varchar(255) DEFAULT NULL, `percent_complete` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_status_scheduler` (`status`,`scheduler_id`), KEY `idx_status_time` (`status`,`execute_time`,`date_entered`), KEY `idx_status_entered` (`status`,`date_entered`), KEY `idx_status_modified` (`status`,`date_modified`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `leads` -- CREATE TABLE `leads` ( `id` char(36) NOT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `salutation` varchar(255) DEFAULT NULL, `first_name` varchar(100) DEFAULT NULL, `last_name` varchar(100) DEFAULT NULL, `title` varchar(100) DEFAULT NULL, `photo` varchar(255) DEFAULT NULL, `department` varchar(100) DEFAULT NULL, `do_not_call` tinyint(1) DEFAULT '0', `phone_home` varchar(100) DEFAULT NULL, `phone_mobile` varchar(100) DEFAULT NULL, `phone_work` varchar(100) DEFAULT NULL, `phone_other` varchar(100) DEFAULT NULL, `phone_fax` varchar(100) DEFAULT NULL, `lawful_basis` text, `date_reviewed` date DEFAULT NULL, `lawful_basis_source` varchar(100) DEFAULT NULL, `primary_address_street` varchar(150) DEFAULT NULL, `primary_address_city` varchar(100) DEFAULT NULL, `primary_address_state` varchar(100) DEFAULT NULL, `primary_address_postalcode` varchar(20) DEFAULT NULL, `primary_address_country` varchar(255) DEFAULT NULL, `alt_address_street` varchar(150) DEFAULT NULL, `alt_address_city` varchar(100) DEFAULT NULL, `alt_address_state` varchar(100) DEFAULT NULL, `alt_address_postalcode` varchar(20) DEFAULT NULL, `alt_address_country` varchar(255) DEFAULT NULL, `assistant` varchar(75) DEFAULT NULL, `assistant_phone` varchar(100) DEFAULT NULL, `converted` tinyint(1) DEFAULT '0', `refered_by` varchar(100) DEFAULT NULL, `lead_source` varchar(100) DEFAULT NULL, `lead_source_description` text, `status` varchar(100) DEFAULT NULL, `status_description` text, `reports_to_id` char(36) DEFAULT NULL, `account_name` varchar(255) DEFAULT NULL, `account_description` text, `contact_id` char(36) DEFAULT NULL, `account_id` char(36) DEFAULT NULL, `opportunity_id` char(36) DEFAULT NULL, `opportunity_name` varchar(255) DEFAULT NULL, `opportunity_amount` varchar(50) DEFAULT NULL, `campaign_id` char(36) DEFAULT NULL, `birthdate` date DEFAULT NULL, `portal_name` varchar(255) DEFAULT NULL, `portal_app` varchar(255) DEFAULT NULL, `website` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_lead_acct_name_first` (`account_name`,`deleted`), KEY `idx_lead_last_first` (`last_name`,`first_name`,`deleted`), KEY `idx_lead_del_stat` (`last_name`,`status`,`deleted`,`first_name`), KEY `idx_lead_opp_del` (`opportunity_id`,`deleted`), KEY `idx_leads_acct_del` (`account_id`,`deleted`), KEY `idx_del_user` (`deleted`,`assigned_user_id`), KEY `idx_lead_assigned` (`assigned_user_id`), KEY `idx_lead_contact` (`contact_id`), KEY `idx_reports_to` (`reports_to_id`), KEY `idx_lead_phone_work` (`phone_work`), KEY `idx_leads_id_del` (`id`,`deleted`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `leads_audit` -- CREATE TABLE `leads_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_leads_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `leads_cstm` -- CREATE TABLE `leads_cstm` ( `id_c` char(36) NOT NULL, `jjwg_maps_lng_c` float(11,8) DEFAULT '0.00000000', `jjwg_maps_lat_c` float(10,8) DEFAULT '0.00000000', `jjwg_maps_geocode_status_c` varchar(255) DEFAULT NULL, `jjwg_maps_address_c` varchar(255) DEFAULT NULL, PRIMARY KEY (`id_c`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `linked_documents` -- CREATE TABLE `linked_documents` ( `id` varchar(36) NOT NULL, `parent_id` varchar(36) DEFAULT NULL, `parent_type` varchar(25) DEFAULT NULL, `document_id` varchar(36) DEFAULT NULL, `document_revision_id` varchar(36) DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_parent_document` (`parent_type`,`parent_id`,`document_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `meetings` -- CREATE TABLE `meetings` ( `id` char(36) NOT NULL, `name` varchar(50) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `location` varchar(50) DEFAULT NULL, `password` varchar(50) DEFAULT NULL, `join_url` varchar(200) DEFAULT NULL, `host_url` varchar(400) DEFAULT NULL, `displayed_url` varchar(400) DEFAULT NULL, `creator` varchar(50) DEFAULT NULL, `external_id` varchar(50) DEFAULT NULL, `duration_hours` int(3) DEFAULT NULL, `duration_minutes` int(2) DEFAULT NULL, `date_start` datetime DEFAULT NULL, `date_end` datetime DEFAULT NULL, `parent_type` varchar(100) DEFAULT NULL, `status` varchar(100) DEFAULT 'Planned', `type` varchar(255) DEFAULT 'Sugar', `parent_id` char(36) DEFAULT NULL, `reminder_time` int(11) DEFAULT '-1', `email_reminder_time` int(11) DEFAULT '-1', `email_reminder_sent` tinyint(1) DEFAULT '0', `outlook_id` varchar(255) DEFAULT NULL, `sequence` int(11) DEFAULT '0', `repeat_type` varchar(36) DEFAULT NULL, `repeat_interval` int(3) DEFAULT '1', `repeat_dow` varchar(7) DEFAULT NULL, `repeat_until` date DEFAULT NULL, `repeat_count` int(7) DEFAULT NULL, `repeat_parent_id` char(36) DEFAULT NULL, `recurring_source` varchar(36) DEFAULT NULL, `gsync_id` varchar(1024) DEFAULT NULL, `gsync_lastsync` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_mtg_name` (`name`), KEY `idx_meet_par_del` (`parent_id`,`parent_type`,`deleted`), KEY `idx_meet_stat_del` (`assigned_user_id`,`status`,`deleted`), KEY `idx_meet_date_start` (`date_start`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `meetings_contacts` -- CREATE TABLE `meetings_contacts` ( `id` varchar(36) NOT NULL, `meeting_id` varchar(36) DEFAULT NULL, `contact_id` varchar(36) DEFAULT NULL, `required` varchar(1) DEFAULT '1', `accept_status` varchar(25) DEFAULT 'none', `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_con_mtg_mtg` (`meeting_id`), KEY `idx_con_mtg_con` (`contact_id`), KEY `idx_meeting_contact` (`meeting_id`,`contact_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `meetings_cstm` -- CREATE TABLE `meetings_cstm` ( `id_c` char(36) NOT NULL, `jjwg_maps_lng_c` float(11,8) DEFAULT '0.00000000', `jjwg_maps_lat_c` float(10,8) DEFAULT '0.00000000', `jjwg_maps_geocode_status_c` varchar(255) DEFAULT NULL, `jjwg_maps_address_c` varchar(255) DEFAULT NULL, PRIMARY KEY (`id_c`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `meetings_leads` -- CREATE TABLE `meetings_leads` ( `id` varchar(36) NOT NULL, `meeting_id` varchar(36) DEFAULT NULL, `lead_id` varchar(36) DEFAULT NULL, `required` varchar(1) DEFAULT '1', `accept_status` varchar(25) DEFAULT 'none', `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_lead_meeting_meeting` (`meeting_id`), KEY `idx_lead_meeting_lead` (`lead_id`), KEY `idx_meeting_lead` (`meeting_id`,`lead_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `meetings_users` -- CREATE TABLE `meetings_users` ( `id` varchar(36) NOT NULL, `meeting_id` varchar(36) DEFAULT NULL, `user_id` varchar(36) DEFAULT NULL, `required` varchar(1) DEFAULT '1', `accept_status` varchar(25) DEFAULT 'none', `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_usr_mtg_mtg` (`meeting_id`), KEY `idx_usr_mtg_usr` (`user_id`), KEY `idx_meeting_users` (`meeting_id`,`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `notes` -- CREATE TABLE `notes` ( `assigned_user_id` char(36) DEFAULT NULL, `id` char(36) NOT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `name` varchar(255) DEFAULT NULL, `file_mime_type` varchar(100) DEFAULT NULL, `filename` varchar(255) DEFAULT NULL, `parent_type` varchar(255) DEFAULT NULL, `parent_id` char(36) DEFAULT NULL, `contact_id` char(36) DEFAULT NULL, `portal_flag` tinyint(1) DEFAULT NULL, `embed_flag` tinyint(1) DEFAULT '0', `description` text, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_note_name` (`name`), KEY `idx_notes_parent` (`parent_id`,`parent_type`), KEY `idx_note_contact` (`contact_id`), KEY `idx_notes_assigned_del` (`deleted`,`assigned_user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `oauth2clients` -- CREATE TABLE `oauth2clients` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `secret` varchar(4000) DEFAULT NULL, `redirect_url` varchar(255) DEFAULT NULL, `is_confidential` tinyint(1) DEFAULT '1', `allowed_grant_type` varchar(255) DEFAULT 'password', `duration_value` int(11) DEFAULT NULL, `duration_amount` int(11) DEFAULT NULL, `duration_unit` varchar(255) DEFAULT 'Duration Unit', `assigned_user_id` char(36) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `oauth2tokens` -- CREATE TABLE `oauth2tokens` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `token_is_revoked` tinyint(1) DEFAULT NULL, `token_type` varchar(255) DEFAULT NULL, `access_token_expires` datetime DEFAULT NULL, `access_token` varchar(4000) DEFAULT NULL, `refresh_token` varchar(4000) DEFAULT NULL, `refresh_token_expires` datetime DEFAULT NULL, `grant_type` varchar(255) DEFAULT NULL, `state` varchar(1024) DEFAULT NULL, `client` char(36) DEFAULT NULL, `assigned_user_id` char(36) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `oauth_consumer` -- CREATE TABLE `oauth_consumer` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `c_key` varchar(255) DEFAULT NULL, `c_secret` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ckey` (`c_key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `oauth_nonce` -- CREATE TABLE `oauth_nonce` ( `conskey` varchar(32) NOT NULL, `nonce` varchar(32) NOT NULL, `nonce_ts` bigint(20) DEFAULT NULL, PRIMARY KEY (`conskey`,`nonce`), KEY `oauth_nonce_keyts` (`conskey`,`nonce_ts`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `oauth_tokens` -- CREATE TABLE `oauth_tokens` ( `id` char(36) NOT NULL, `secret` varchar(32) DEFAULT NULL, `tstate` varchar(1) DEFAULT NULL, `consumer` char(36) NOT NULL, `token_ts` bigint(20) DEFAULT NULL, `verify` varchar(32) DEFAULT NULL, `deleted` tinyint(1) NOT NULL DEFAULT '0', `callback_url` varchar(255) DEFAULT NULL, `assigned_user_id` char(36) DEFAULT NULL, PRIMARY KEY (`id`,`deleted`), KEY `oauth_state_ts` (`tstate`,`token_ts`), KEY `constoken_key` (`consumer`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `opportunities` -- CREATE TABLE `opportunities` ( `id` char(36) NOT NULL, `name` varchar(50) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `opportunity_type` varchar(255) DEFAULT NULL, `campaign_id` char(36) DEFAULT NULL, `lead_source` varchar(50) DEFAULT NULL, `amount` double DEFAULT NULL, `amount_usdollar` double DEFAULT NULL, `currency_id` char(36) DEFAULT NULL, `date_closed` date DEFAULT NULL, `next_step` varchar(100) DEFAULT NULL, `sales_stage` varchar(255) DEFAULT NULL, `probability` double DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_opp_name` (`name`), KEY `idx_opp_assigned` (`assigned_user_id`), KEY `idx_opp_id_deleted` (`id`,`deleted`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `opportunities_audit` -- CREATE TABLE `opportunities_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_opportunities_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `opportunities_contacts` -- CREATE TABLE `opportunities_contacts` ( `id` varchar(36) NOT NULL, `contact_id` varchar(36) DEFAULT NULL, `opportunity_id` varchar(36) DEFAULT NULL, `contact_role` varchar(50) DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_con_opp_con` (`contact_id`), KEY `idx_con_opp_opp` (`opportunity_id`), KEY `idx_opportunities_contacts` (`opportunity_id`,`contact_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `opportunities_cstm` -- CREATE TABLE `opportunities_cstm` ( `id_c` char(36) NOT NULL, `jjwg_maps_lng_c` float(11,8) DEFAULT '0.00000000', `jjwg_maps_lat_c` float(10,8) DEFAULT '0.00000000', `jjwg_maps_geocode_status_c` varchar(255) DEFAULT NULL, `jjwg_maps_address_c` varchar(255) DEFAULT NULL, PRIMARY KEY (`id_c`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `outbound_email` -- CREATE TABLE `outbound_email` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `type` varchar(15) DEFAULT 'user', `user_id` char(36) DEFAULT NULL, `smtp_from_name` varchar(255) DEFAULT NULL, `smtp_from_addr` varchar(255) DEFAULT NULL, `reply_to_name` varchar(255) DEFAULT NULL, `reply_to_addr` varchar(255) DEFAULT NULL, `signature` text, `mail_sendtype` varchar(8) DEFAULT 'SMTP', `mail_smtptype` varchar(20) DEFAULT 'other', `mail_smtpserver` varchar(100) DEFAULT NULL, `mail_smtpport` varchar(5) DEFAULT '25', `mail_smtpuser` varchar(100) DEFAULT NULL, `mail_smtppass` varchar(100) DEFAULT NULL, `mail_smtpauth_req` tinyint(1) DEFAULT '0', `mail_smtpssl` varchar(1) DEFAULT '0', `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `outbound_email` -- INSERT INTO `outbound_email` VALUES ('bdb3141a-bd55-877d-f943-679c686955f4', 'system', 'system', '1', NULL, NULL, NULL, NULL, NULL, 'SMTP', 'other', '', '25', '', '', 1, '0', NULL, NULL, NULL, NULL, 0, NULL); -- -------------------------------------------------------- -- -- Table structure for table `outbound_email_audit` -- CREATE TABLE `outbound_email_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_outbound_email_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `project` -- CREATE TABLE `project` ( `id` char(36) NOT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `assigned_user_id` char(36) DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `name` varchar(50) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `estimated_start_date` date DEFAULT NULL, `estimated_end_date` date DEFAULT NULL, `status` varchar(255) DEFAULT NULL, `priority` varchar(255) DEFAULT NULL, `override_business_hours` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `projects_accounts` -- CREATE TABLE `projects_accounts` ( `id` varchar(36) NOT NULL, `account_id` varchar(36) DEFAULT NULL, `project_id` varchar(36) DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_proj_acct_proj` (`project_id`), KEY `idx_proj_acct_acct` (`account_id`), KEY `projects_accounts_alt` (`project_id`,`account_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `projects_bugs` -- CREATE TABLE `projects_bugs` ( `id` varchar(36) NOT NULL, `bug_id` varchar(36) DEFAULT NULL, `project_id` varchar(36) DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_proj_bug_proj` (`project_id`), KEY `idx_proj_bug_bug` (`bug_id`), KEY `projects_bugs_alt` (`project_id`,`bug_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `projects_cases` -- CREATE TABLE `projects_cases` ( `id` varchar(36) NOT NULL, `case_id` varchar(36) DEFAULT NULL, `project_id` varchar(36) DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_proj_case_proj` (`project_id`), KEY `idx_proj_case_case` (`case_id`), KEY `projects_cases_alt` (`project_id`,`case_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `projects_contacts` -- CREATE TABLE `projects_contacts` ( `id` varchar(36) NOT NULL, `contact_id` varchar(36) DEFAULT NULL, `project_id` varchar(36) DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_proj_con_proj` (`project_id`), KEY `idx_proj_con_con` (`contact_id`), KEY `projects_contacts_alt` (`project_id`,`contact_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `projects_opportunities` -- CREATE TABLE `projects_opportunities` ( `id` varchar(36) NOT NULL, `opportunity_id` varchar(36) DEFAULT NULL, `project_id` varchar(36) DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_proj_opp_proj` (`project_id`), KEY `idx_proj_opp_opp` (`opportunity_id`), KEY `projects_opportunities_alt` (`project_id`,`opportunity_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `projects_products` -- CREATE TABLE `projects_products` ( `id` varchar(36) NOT NULL, `product_id` varchar(36) DEFAULT NULL, `project_id` varchar(36) DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_proj_prod_project` (`project_id`), KEY `idx_proj_prod_product` (`product_id`), KEY `projects_products_alt` (`project_id`,`product_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `project_contacts_1_c` -- CREATE TABLE `project_contacts_1_c` ( `id` varchar(36) NOT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `project_contacts_1project_ida` varchar(36) DEFAULT NULL, `project_contacts_1contacts_idb` varchar(36) DEFAULT NULL, PRIMARY KEY (`id`), KEY `project_contacts_1_alt` (`project_contacts_1project_ida`,`project_contacts_1contacts_idb`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `project_cstm` -- CREATE TABLE `project_cstm` ( `id_c` char(36) NOT NULL, `jjwg_maps_lng_c` float(11,8) DEFAULT '0.00000000', `jjwg_maps_lat_c` float(10,8) DEFAULT '0.00000000', `jjwg_maps_geocode_status_c` varchar(255) DEFAULT NULL, `jjwg_maps_address_c` varchar(255) DEFAULT NULL, PRIMARY KEY (`id_c`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `project_task` -- CREATE TABLE `project_task` ( `id` char(36) NOT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `project_id` char(36) NOT NULL, `project_task_id` int(11) DEFAULT NULL, `name` varchar(50) DEFAULT NULL, `status` varchar(255) DEFAULT NULL, `relationship_type` varchar(255) DEFAULT NULL, `description` text, `predecessors` text, `date_start` date DEFAULT NULL, `time_start` int(11) DEFAULT NULL, `time_finish` int(11) DEFAULT NULL, `date_finish` date DEFAULT NULL, `duration` int(11) DEFAULT NULL, `duration_unit` text, `actual_duration` int(11) DEFAULT NULL, `percent_complete` int(11) DEFAULT NULL, `date_due` date DEFAULT NULL, `time_due` time DEFAULT NULL, `parent_task_id` int(11) DEFAULT NULL, `assigned_user_id` char(36) DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `priority` varchar(255) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `milestone_flag` tinyint(1) DEFAULT NULL, `order_number` int(11) DEFAULT '1', `task_number` int(11) DEFAULT NULL, `estimated_effort` int(11) DEFAULT NULL, `actual_effort` int(11) DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `utilization` int(11) DEFAULT '100', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `project_task_audit` -- CREATE TABLE `project_task_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_project_task_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `project_users_1_c` -- CREATE TABLE `project_users_1_c` ( `id` varchar(36) NOT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `project_users_1project_ida` varchar(36) DEFAULT NULL, `project_users_1users_idb` varchar(36) DEFAULT NULL, PRIMARY KEY (`id`), KEY `project_users_1_alt` (`project_users_1project_ida`,`project_users_1users_idb`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `prospects` -- CREATE TABLE `prospects` ( `id` char(36) NOT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `salutation` varchar(255) DEFAULT NULL, `first_name` varchar(100) DEFAULT NULL, `last_name` varchar(100) DEFAULT NULL, `title` varchar(100) DEFAULT NULL, `photo` varchar(255) DEFAULT NULL, `department` varchar(255) DEFAULT NULL, `do_not_call` tinyint(1) DEFAULT '0', `phone_home` varchar(100) DEFAULT NULL, `phone_mobile` varchar(100) DEFAULT NULL, `phone_work` varchar(100) DEFAULT NULL, `phone_other` varchar(100) DEFAULT NULL, `phone_fax` varchar(100) DEFAULT NULL, `lawful_basis` text, `date_reviewed` date DEFAULT NULL, `lawful_basis_source` varchar(100) DEFAULT NULL, `primary_address_street` varchar(150) DEFAULT NULL, `primary_address_city` varchar(100) DEFAULT NULL, `primary_address_state` varchar(100) DEFAULT NULL, `primary_address_postalcode` varchar(20) DEFAULT NULL, `primary_address_country` varchar(255) DEFAULT NULL, `alt_address_street` varchar(150) DEFAULT NULL, `alt_address_city` varchar(100) DEFAULT NULL, `alt_address_state` varchar(100) DEFAULT NULL, `alt_address_postalcode` varchar(20) DEFAULT NULL, `alt_address_country` varchar(255) DEFAULT NULL, `assistant` varchar(75) DEFAULT NULL, `assistant_phone` varchar(100) DEFAULT NULL, `tracker_key` int(11) NOT NULL AUTO_INCREMENT, `birthdate` date DEFAULT NULL, `lead_id` char(36) DEFAULT NULL, `account_name` varchar(150) DEFAULT NULL, `campaign_id` char(36) DEFAULT NULL, PRIMARY KEY (`id`), KEY `prospect_auto_tracker_key` (`tracker_key`), KEY `idx_prospects_last_first` (`last_name`,`first_name`,`deleted`), KEY `idx_prospecs_del_last` (`last_name`,`deleted`), KEY `idx_prospects_id_del` (`id`,`deleted`), KEY `idx_prospects_assigned` (`assigned_user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `prospects_cstm` -- CREATE TABLE `prospects_cstm` ( `id_c` char(36) NOT NULL, `jjwg_maps_lng_c` float(11,8) DEFAULT '0.00000000', `jjwg_maps_lat_c` float(10,8) DEFAULT '0.00000000', `jjwg_maps_geocode_status_c` varchar(255) DEFAULT NULL, `jjwg_maps_address_c` varchar(255) DEFAULT NULL, PRIMARY KEY (`id_c`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `prospect_lists` -- CREATE TABLE `prospect_lists` ( `assigned_user_id` char(36) DEFAULT NULL, `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `list_type` varchar(100) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `deleted` tinyint(1) DEFAULT NULL, `description` text, `domain_name` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_prospect_list_name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `prospect_lists_prospects` -- CREATE TABLE `prospect_lists_prospects` ( `id` varchar(36) NOT NULL, `prospect_list_id` varchar(36) DEFAULT NULL, `related_id` varchar(36) DEFAULT NULL, `related_type` varchar(25) DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_plp_pro_id` (`prospect_list_id`,`deleted`), KEY `idx_plp_rel_id` (`related_id`,`related_type`,`prospect_list_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `prospect_list_campaigns` -- CREATE TABLE `prospect_list_campaigns` ( `id` varchar(36) NOT NULL, `prospect_list_id` varchar(36) DEFAULT NULL, `campaign_id` varchar(36) DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_pro_id` (`prospect_list_id`), KEY `idx_cam_id` (`campaign_id`), KEY `idx_prospect_list_campaigns` (`prospect_list_id`,`campaign_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `relationships` -- CREATE TABLE `relationships` ( `id` char(36) NOT NULL, `relationship_name` varchar(150) DEFAULT NULL, `lhs_module` varchar(100) DEFAULT NULL, `lhs_table` varchar(64) DEFAULT NULL, `lhs_key` varchar(64) DEFAULT NULL, `rhs_module` varchar(100) DEFAULT NULL, `rhs_table` varchar(64) DEFAULT NULL, `rhs_key` varchar(64) DEFAULT NULL, `join_table` varchar(64) DEFAULT NULL, `join_key_lhs` varchar(64) DEFAULT NULL, `join_key_rhs` varchar(64) DEFAULT NULL, `relationship_type` varchar(64) DEFAULT NULL, `relationship_role_column` varchar(64) DEFAULT NULL, `relationship_role_column_value` varchar(50) DEFAULT NULL, `reverse` tinyint(1) DEFAULT '0', `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_rel_name` (`relationship_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `relationships` -- INSERT INTO `relationships` VALUES ('10f2b027-7cb5-222b-6203-679c69f6d342', 'emails_modified_user', 'Users', 'users', 'id', 'Emails', 'emails', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('114945a9-40a2-be95-eec9-679c69af56c7', 'aos_product_quotes_aos_products', 'AOS_Products', 'aos_products', 'id', 'AOS_Products_Quotes', 'aos_products_quotes', 'product_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('11ce6232-f8b6-4ef3-2b45-679c69f42a68', 'emails_created_by', 'Users', 'users', 'id', 'Emails', 'emails', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('1298d6de-3bf6-2f7d-c8db-679c691fbb54', 'aos_line_item_groups_modified_user', 'Users', 'users', 'id', 'AOS_Line_Item_Groups', 'aos_line_item_groups', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('129a8d15-a4d6-8af4-e439-679c6961730b', 'emails_assigned_user', 'Users', 'users', 'id', 'Emails', 'emails', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('12b50ac7-8f8f-3765-fba0-679c69d1f596', 'opportunities_campaign', 'Campaigns', 'campaigns', 'id', 'Opportunities', 'opportunities', 'campaign_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('137c07f7-355b-a02f-633b-679c690efdd0', 'securitygroups_emails', 'SecurityGroups', 'securitygroups', 'id', 'Emails', 'emails', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'Emails', 0, 0), ('14055875-58f0-8895-5dc0-679c69f06943', 'aos_line_item_groups_created_by', 'Users', 'users', 'id', 'AOS_Line_Item_Groups', 'aos_line_item_groups', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('146086bc-1fcf-3153-c116-679c69c301a4', 'emails_notes_rel', 'Emails', 'emails', 'id', 'Notes', 'notes', 'parent_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('15720d2a-5ea5-8e00-b288-679c6981e3f0', 'aos_line_item_groups_assigned_user', 'Users', 'users', 'id', 'AOS_Line_Item_Groups', 'aos_line_item_groups', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('158607cc-d51e-61c4-f26f-679c69ce8052', 'emails_contacts_rel', 'Emails', 'emails', 'id', 'Contacts', 'contacts', 'id', 'emails_beans', 'email_id', 'bean_id', 'many-to-many', 'bean_module', 'Contacts', 0, 0), ('1650e977-59ad-6d0c-6d24-679c6946258c', 'emails_accounts_rel', 'Emails', 'emails', 'id', 'Accounts', 'accounts', 'id', 'emails_beans', 'email_id', 'bean_id', 'many-to-many', 'bean_module', 'Accounts', 0, 0), ('1688f25e-1009-1be7-3759-679c6970d40f', 'groups_aos_product_quotes', 'AOS_Line_Item_Groups', 'aos_line_item_groups', 'id', 'AOS_Products_Quotes', 'aos_products_quotes', 'group_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('17254922-94a4-bd19-87a2-679c696b0cff', 'emails_leads_rel', 'Emails', 'emails', 'id', 'Leads', 'leads', 'id', 'emails_beans', 'email_id', 'bean_id', 'many-to-many', 'bean_module', 'Leads', 0, 0), ('17cd23b2-50d7-437f-b9b2-679c690969b4', 'aos_quotes_modified_user', 'Users', 'users', 'id', 'AOS_Quotes', 'aos_quotes', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('181997e2-357e-3431-a608-679c69b37641', 'emails_aos_contracts_rel', 'Emails', 'emails', 'id', 'AOS_Contracts', 'aos_contracts', 'id', 'emails_beans', 'email_id', 'bean_id', 'many-to-many', 'bean_module', 'AOS_Contracts', 0, 0), ('1918ac46-58d0-67ab-dd0e-679c69424fa2', 'aos_quotes_created_by', 'Users', 'users', 'id', 'AOS_Quotes', 'aos_quotes', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('192dc416-fb19-717f-2314-679c69c612e7', 'emails_meetings_rel', 'Emails', 'emails', 'id', 'Meetings', 'meetings', 'id', 'emails_beans', 'email_id', 'bean_id', 'many-to-many', 'bean_module', 'Meetings', 0, 0), ('1a258481-b377-4192-a2bc-679c69c7a5a8', 'meetings_modified_user', 'Users', 'users', 'id', 'Meetings', 'meetings', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('1a5524b5-16a9-4d89-c080-679c6972442d', 'aos_quotes_assigned_user', 'Users', 'users', 'id', 'AOS_Quotes', 'aos_quotes', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('1af50fb5-0ec3-077b-50e7-679c69e77c9c', 'meetings_created_by', 'Users', 'users', 'id', 'Meetings', 'meetings', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('1bbb2a8f-349d-f899-9b07-679c69835b2a', 'securitygroups_aos_quotes', 'SecurityGroups', 'securitygroups', 'id', 'AOS_Quotes', 'aos_quotes', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'AOS_Quotes', 0, 0), ('1c01cf2e-5ce3-9df7-b3d7-679c69de38a0', 'meetings_assigned_user', 'Users', 'users', 'id', 'Meetings', 'meetings', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('1ce0cc74-f550-88b8-aea8-679c6927f1db', 'aos_quotes_aos_product_quotes', 'AOS_Quotes', 'aos_quotes', 'id', 'AOS_Products_Quotes', 'aos_products_quotes', 'parent_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('1cfab7e7-9be2-adb8-3fec-679c695032a4', 'securitygroups_meetings', 'SecurityGroups', 'securitygroups', 'id', 'Meetings', 'meetings', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'Meetings', 0, 0), ('1e049e05-0b88-803e-68e0-679c69f14c63', 'meetings_notes', 'Meetings', 'meetings', 'id', 'Notes', 'notes', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Meetings', 0, 0), ('1e228b05-ba27-4be4-f5a3-679c69a80599', 'aos_quotes_aos_line_item_groups', 'AOS_Quotes', 'aos_quotes', 'id', 'AOS_Line_Item_Groups', 'aos_line_item_groups', 'parent_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('1ee705d6-09fd-b46d-1bce-679c693c5bbb', 'opportunity_aos_quotes', 'Opportunities', 'opportunities', 'id', 'AOS_Quotes', 'aos_quotes', 'opportunity_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('1f3dfad8-059e-40ba-a7a3-679c69baedc5', 'aow_actions_modified_user', 'Users', 'users', 'id', 'AOW_Actions', 'aow_actions', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('1f441dfb-e2f7-b486-7c32-679c69f25458', 'tasks_modified_user', 'Users', 'users', 'id', 'Tasks', 'tasks', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('20384d70-1631-4546-2b32-679c692b4ee3', 'tasks_created_by', 'Users', 'users', 'id', 'Tasks', 'tasks', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('20ac98ec-961a-f9b4-3848-679c691da00a', 'aow_actions_created_by', 'Users', 'users', 'id', 'AOW_Actions', 'aow_actions', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('213f2408-8da6-5354-6bdf-679c69b9f2be', 'tasks_assigned_user', 'Users', 'users', 'id', 'Tasks', 'tasks', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('2226186c-bdde-aafd-8abc-679c6911d948', 'aow_workflow_modified_user', 'Users', 'users', 'id', 'AOW_WorkFlow', 'aow_workflow', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('222829db-5909-2615-718c-679c69660208', 'securitygroups_tasks', 'SecurityGroups', 'securitygroups', 'id', 'Tasks', 'tasks', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'Tasks', 0, 0), ('22fd0a9a-e016-6566-9292-679c6984c2bd', 'tasks_notes', 'Tasks', 'tasks', 'id', 'Notes', 'notes', 'parent_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('23406c01-48dd-0086-a52d-679c69c5e3d5', 'aow_workflow_created_by', 'Users', 'users', 'id', 'AOW_WorkFlow', 'aow_workflow', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('24b8f496-04ae-9f59-a05e-679c69142a64', 'aow_workflow_assigned_user', 'Users', 'users', 'id', 'AOW_WorkFlow', 'aow_workflow', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('257064c5-9b81-2bef-d7a3-679c69a3d038', 'alerts_modified_user', 'Users', 'users', 'id', 'Alerts', 'alerts', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('26041e71-1b45-bdff-9523-679c695c9bda', 'securitygroups_aow_workflow', 'SecurityGroups', 'securitygroups', 'id', 'AOW_WorkFlow', 'aow_workflow', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'AOW_WorkFlow', 0, 0), ('266b716f-e91a-44e3-4db8-679c69a64a10', 'alerts_created_by', 'Users', 'users', 'id', 'Alerts', 'alerts', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('26f412af-039b-7874-9973-679c69da1d09', 'aow_workflow_aow_conditions', 'AOW_WorkFlow', 'aow_workflow', 'id', 'AOW_Conditions', 'aow_conditions', 'aow_workflow_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('2741a494-f350-2143-35a6-679c69430638', 'alerts_assigned_user', 'Users', 'users', 'id', 'Alerts', 'alerts', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('2807153c-09eb-2f1a-4fc9-679c69e892be', 'aow_workflow_aow_actions', 'AOW_WorkFlow', 'aow_workflow', 'id', 'AOW_Actions', 'aow_actions', 'aow_workflow_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('289eaede-28e7-3e63-d0bd-679c6924456b', 'documents_modified_user', 'Users', 'users', 'id', 'Documents', 'documents', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('294a0f38-6123-8294-4eb2-679c69fc2493', 'aow_workflow_aow_processed', 'AOW_WorkFlow', 'aow_workflow', 'id', 'AOW_Processed', 'aow_processed', 'aow_workflow_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('2985eb77-ca14-825d-9562-679c69b897c8', 'documents_created_by', 'Users', 'users', 'id', 'Documents', 'documents', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('2a782f95-7ade-85a6-9bac-679c69d8f503', 'documents_assigned_user', 'Users', 'users', 'id', 'Documents', 'documents', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('2abbcf54-a466-91e9-d221-679c69c57915', 'aow_processed_modified_user', 'Users', 'users', 'id', 'AOW_Processed', 'aow_processed', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('2b3fd191-43a6-182f-8872-679c69d6424f', 'securitygroups_documents', 'SecurityGroups', 'securitygroups', 'id', 'Documents', 'documents', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'Documents', 0, 0), ('2b6d0129-d24a-07f3-f81e-679c698e1f66', 'opportunity_aos_contracts', 'Opportunities', 'opportunities', 'id', 'AOS_Contracts', 'aos_contracts', 'opportunity_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('2c03ca4f-ec83-e3d3-8a3c-679c6914f22c', 'aow_processed_created_by', 'Users', 'users', 'id', 'AOW_Processed', 'aow_processed', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('2c51826c-afed-ce00-1ea2-679c69a8f487', 'document_revisions', 'Documents', 'documents', 'id', 'DocumentRevisions', 'document_revisions', 'document_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('2d57947d-be60-dfe0-e054-679c690f9067', 'aow_conditions_modified_user', 'Users', 'users', 'id', 'AOW_Conditions', 'aow_conditions', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('2d59a27b-ae28-8a06-4121-679c69cb972d', 'revisions_created_by', 'Users', 'users', 'id', 'DocumentRevisions', 'document_revisions', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('2e7a8ea7-5428-1630-7f77-679c692501fe', 'aow_conditions_created_by', 'Users', 'users', 'id', 'AOW_Conditions', 'aow_conditions', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('2e7eb594-a7fe-1e39-7236-679c694f7c35', 'securitygroups_inboundemail', 'SecurityGroups', 'securitygroups', 'id', 'InboundEmail', 'inbound_email', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'InboundEmail', 0, 0), ('2f58b48c-679b-ed47-503a-679c696c466d', 'inbound_emails_distribution_user', 'Users', 'users', 'id', 'InboundEmail', 'inbound_email', 'distribution_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('2ff63afa-baa3-e959-cda2-679c695af9e7', 'jjwg_maps_modified_user', 'Users', 'users', 'id', 'jjwg_Maps', 'jjwg_maps', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('309cbd46-ce3b-886a-4e59-679c693be0da', 'inbound_emails_autoreply_email_templates', 'EmailTemplates', 'email_templates', 'id', 'InboundEmail', 'inbound_email', 'template_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('312645f8-d025-0995-b33d-679c694b14b9', 'jjwg_maps_created_by', 'Users', 'users', 'id', 'jjwg_Maps', 'jjwg_maps', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('31d4bd02-fa75-ee91-1a30-679c6983d7d0', 'inbound_emails_case_email_templates', 'EmailTemplates', 'email_templates', 'id', 'InboundEmail', 'inbound_email', 'create_case_template_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('329fbf6b-69a7-92ae-e4d9-679c69b6dafb', 'jjwg_maps_assigned_user', 'Users', 'users', 'id', 'jjwg_Maps', 'jjwg_maps', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('32ae82c8-a0a1-d8d7-b8cd-679c6956b047', 'inbound_emails_external_oauth_connections', 'ExternalOAuthConnection', 'external_oauth_connections', 'id', 'InboundEmail', 'inbound_email', 'external_oauth_connection_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('33920b70-0f0a-6602-0f55-679c69631130', 'inbound_outbound_email_accounts', 'OutboundEmailAccounts', 'outbound_email', 'id', 'InboundEmail', 'inbound_email', 'outbound_email_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('33993ae3-a1c3-fe9d-c3d7-679c6908b7d6', 'securitygroups_jjwg_maps', 'SecurityGroups', 'securitygroups', 'id', 'jjwg_Maps', 'jjwg_maps', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'jjwg_Maps', 0, 0), ('33d006e8-f9fb-49f9-9951-679c693ce5fe', 'opportunity_currencies', 'Opportunities', 'opportunities', 'currency_id', 'Currencies', 'currencies', 'id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('347de5f3-b3c2-9f09-d3bb-679c695c9dde', 'inbound_email_created_by', 'Users', 'users', 'id', 'InboundEmail', 'inbound_email', 'created_by', NULL, NULL, NULL, 'one-to-one', NULL, NULL, 0, 0), ('3500e67a-0d6d-844e-f3d1-679c691c2b58', 'jjwg_Maps_accounts', 'jjwg_Maps', 'jjwg_Maps', 'parent_id', 'Accounts', 'accounts', 'id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Accounts', 0, 0), ('35b8e30f-0214-714a-7f7e-679c69f09d0c', 'inbound_email_modified_user_id', 'Users', 'users', 'id', 'InboundEmail', 'inbound_email', 'modified_user_id', NULL, NULL, NULL, 'one-to-one', NULL, NULL, 0, 0), ('36553427-d247-90c2-8307-679c6936e378', 'jjwg_Maps_contacts', 'jjwg_Maps', 'jjwg_Maps', 'parent_id', 'Contacts', 'contacts', 'id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Contacts', 0, 0), ('369b942d-8047-9d2e-e642-679c699535d7', 'saved_search_assigned_user', 'Users', 'users', 'id', 'SavedSearch', 'saved_search', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('3767931e-7c4a-925b-e564-679c693c0de7', 'jjwg_Maps_leads', 'jjwg_Maps', 'jjwg_Maps', 'parent_id', 'Leads', 'leads', 'id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Leads', 0, 0), ('37a7aaf9-37fd-8e13-f3d0-679c6949c62d', 'aobh_businesshours_modified_user', 'Users', 'users', 'id', 'AOBH_BusinessHours', 'aobh_businesshours', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('388c6f9f-6e9e-17f5-bede-679c69221277', 'aobh_businesshours_created_by', 'Users', 'users', 'id', 'AOBH_BusinessHours', 'aobh_businesshours', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('38a59612-1379-fba3-23a8-679c69369506', 'jjwg_Maps_opportunities', 'jjwg_Maps', 'jjwg_Maps', 'parent_id', 'Opportunities', 'opportunities', 'id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Opportunities', 0, 0), ('39e6f1e1-540e-2e49-9695-679c69448b0b', 'jjwg_Maps_cases', 'jjwg_Maps', 'jjwg_Maps', 'parent_id', 'Cases', 'cases', 'id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Cases', 0, 0), ('39f0fd1d-b8d8-244d-2a16-679c69ad2a90', 'sugarfeed_modified_user', 'Users', 'users', 'id', 'SugarFeed', 'sugarfeed', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('3ad58305-b7b7-ba4c-acfa-679c695ccc80', 'sugarfeed_created_by', 'Users', 'users', 'id', 'SugarFeed', 'sugarfeed', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('3b4b0460-8a0d-9909-0652-679c69f2400d', 'jjwg_Maps_projects', 'jjwg_Maps', 'jjwg_Maps', 'parent_id', 'Project', 'project', 'id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Project', 0, 0), ('3baacffc-3175-fc8a-3803-679c69c0dc3b', 'sugarfeed_assigned_user', 'Users', 'users', 'id', 'SugarFeed', 'sugarfeed', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('3cc5fdb9-fa3c-8b8b-9bce-679c69c9f6b8', 'jjwg_Maps_meetings', 'jjwg_Maps', 'jjwg_Maps', 'parent_id', 'Meetings', 'meetings', 'id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Meetings', 0, 0), ('3cfa7be2-c84d-dd56-7a08-679c69106835', 'eapm_modified_user', 'Users', 'users', 'id', 'EAPM', 'eapm', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('3e217fd7-b10d-7ff9-a6ea-679c6955aa6e', 'jjwg_Maps_prospects', 'jjwg_Maps', 'jjwg_Maps', 'parent_id', 'Prospects', 'prospects', 'id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Prospects', 0, 0), ('3e3fd056-0413-deb1-1480-679c69a5bc1b', 'eapm_created_by', 'Users', 'users', 'id', 'EAPM', 'eapm', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('3f105caf-2b60-329b-ed7d-679c69681d5b', 'eapm_assigned_user', 'Users', 'users', 'id', 'EAPM', 'eapm', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('3f4f9623-8de3-e5f0-ecff-679c69c15a2e', 'jjwg_markers_modified_user', 'Users', 'users', 'id', 'jjwg_Markers', 'jjwg_markers', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('3ff177cd-aca1-a04f-b081-679c694d9966', 'oauthkeys_modified_user', 'Users', 'users', 'id', 'OAuthKeys', 'oauth_consumer', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('4040099c-eedf-df96-8dba-679c69f22e73', 'jjwg_markers_created_by', 'Users', 'users', 'id', 'jjwg_Markers', 'jjwg_markers', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('40ec6db1-f0f8-c7a0-8c0e-679c69b9c711', 'oauthkeys_created_by', 'Users', 'users', 'id', 'OAuthKeys', 'oauth_consumer', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('412b0c0e-85cb-311f-adf2-679c698d6320', 'jjwg_markers_assigned_user', 'Users', 'users', 'id', 'jjwg_Markers', 'jjwg_markers', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('41ca15c5-34a5-a734-0501-679c69a938a8', 'oauthkeys_assigned_user', 'Users', 'users', 'id', 'OAuthKeys', 'oauth_consumer', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('421afce5-6798-19c5-8eaf-679c69983814', 'securitygroups_jjwg_markers', 'SecurityGroups', 'securitygroups', 'id', 'jjwg_Markers', 'jjwg_markers', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'jjwg_Markers', 0, 0), ('42bb0cbc-2f36-607e-3ce0-679c69848843', 'consumer_tokens', 'OAuthKeys', 'oauth_consumer', 'id', 'OAuthTokens', 'oauth_tokens', 'consumer', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('432eec40-bf94-598e-a866-679c692ce163', 'jjwg_areas_modified_user', 'Users', 'users', 'id', 'jjwg_Areas', 'jjwg_areas', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('437d4d0c-c105-501a-c790-679c69646a4e', 'oauthtokens_assigned_user', 'Users', 'users', 'id', 'OAuthTokens', 'oauth_tokens', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('43fa41d2-c090-14fb-6505-679c699c4887', 'jjwg_areas_created_by', 'Users', 'users', 'id', 'jjwg_Areas', 'jjwg_areas', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('44a39dcc-b625-205b-323d-679c691c8996', 'am_projecttemplates_modified_user', 'Users', 'users', 'id', 'AM_ProjectTemplates', 'am_projecttemplates', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('4510bde3-aec1-a63c-038f-679c6982c4e5', 'jjwg_areas_assigned_user', 'Users', 'users', 'id', 'jjwg_Areas', 'jjwg_areas', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('45be0a17-b7ec-1d0c-954f-679c696cfb08', 'am_projecttemplates_created_by', 'Users', 'users', 'id', 'AM_ProjectTemplates', 'am_projecttemplates', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('45f19c08-24de-a269-7af3-679c6936e0fa', 'securitygroups_jjwg_areas', 'SecurityGroups', 'securitygroups', 'id', 'jjwg_Areas', 'jjwg_areas', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'jjwg_Areas', 0, 0), ('46cb2b98-f0e9-7325-ab93-679c69ecb48f', 'am_projecttemplates_assigned_user', 'Users', 'users', 'id', 'AM_ProjectTemplates', 'am_projecttemplates', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('4729ae0c-f5e8-1680-21d0-679c699714a6', 'jjwg_address_cache_modified_user', 'Users', 'users', 'id', 'jjwg_Address_Cache', 'jjwg_address_cache', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('47e18f51-8cff-cdde-329e-679c69b9401f', 'am_tasktemplates_modified_user', 'Users', 'users', 'id', 'AM_TaskTemplates', 'am_tasktemplates', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('47fb8071-92c9-0d18-8095-679c696723b3', 'jjwg_address_cache_created_by', 'Users', 'users', 'id', 'jjwg_Address_Cache', 'jjwg_address_cache', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('48bb2efb-f422-c10f-4dcd-679c69da90a2', 'am_tasktemplates_created_by', 'Users', 'users', 'id', 'AM_TaskTemplates', 'am_tasktemplates', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('49154ac7-fc71-4ea0-d921-679c69c75a73', 'jjwg_address_cache_assigned_user', 'Users', 'users', 'id', 'jjwg_Address_Cache', 'jjwg_address_cache', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('49d9ecc8-0f6e-8399-bdad-679c69bb8fda', 'am_tasktemplates_assigned_user', 'Users', 'users', 'id', 'AM_TaskTemplates', 'am_tasktemplates', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('4a1640e1-06bf-8da6-8de6-679c6951c024', 'calls_reschedule_modified_user', 'Users', 'users', 'id', 'Calls_Reschedule', 'calls_reschedule', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('4abffb3f-18a2-c7c0-2006-679c693763fe', 'favorites_modified_user', 'Users', 'users', 'id', 'Favorites', 'favorites', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('4ade46a8-e7e3-d339-62de-679c69d5936b', 'calls_reschedule_created_by', 'Users', 'users', 'id', 'Calls_Reschedule', 'calls_reschedule', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('4b8997d3-54b8-f761-d092-679c69f5c618', 'favorites_created_by', 'Users', 'users', 'id', 'Favorites', 'favorites', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('4b9e3d84-3bee-4fbe-1a52-679c69bd23fb', 'calls_reschedule_assigned_user', 'Users', 'users', 'id', 'Calls_Reschedule', 'calls_reschedule', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('4c8aee9d-9ab7-7d43-1447-679c6947c4e5', 'favorites_assigned_user', 'Users', 'users', 'id', 'Favorites', 'favorites', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('4cb2ef3b-844f-f543-9ef8-679c693205f0', 'securitygroups_modified_user', 'Users', 'users', 'id', 'SecurityGroups', 'securitygroups', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('4d8fbee8-40fd-1259-5590-679c69d9c627', 'aok_knowledge_base_categories_modified_user', 'Users', 'users', 'id', 'AOK_Knowledge_Base_Categories', 'aok_knowledge_base_categories', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('4da882b9-982c-0efb-22ea-679c6916a63d', 'securitygroups_created_by', 'Users', 'users', 'id', 'SecurityGroups', 'securitygroups', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('4e6a6ece-5e44-b192-c5a2-679c696d2841', 'aok_knowledge_base_categories_created_by', 'Users', 'users', 'id', 'AOK_Knowledge_Base_Categories', 'aok_knowledge_base_categories', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('4eab681c-fdce-e0d3-39b6-679c69dad9f8', 'securitygroups_assigned_user', 'Users', 'users', 'id', 'SecurityGroups', 'securitygroups', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('4f336c04-b8b0-178d-ff01-679c690e532e', 'aok_knowledge_base_categories_assigned_user', 'Users', 'users', 'id', 'AOK_Knowledge_Base_Categories', 'aok_knowledge_base_categories', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('4f9570a3-e5e8-7bd1-3ae1-679c692ffc26', 'securitygroups_outboundemailaccounts', 'SecurityGroups', 'securitygroups', 'id', 'OutboundEmailAccounts', 'outbound_email', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'OutboundEmailAccounts', 0, 0), ('502f0704-8328-3d0e-042e-679c69bcf6fc', 'aok_knowledgebase_modified_user', 'Users', 'users', 'id', 'AOK_KnowledgeBase', 'aok_knowledgebase', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('5095e0c4-f3e0-0791-894e-679c698c1542', 'outbound_email_owner_user', 'Users', 'users', 'id', 'OutboundEmailAccounts', 'outbound_email', 'user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('5139f194-6fb4-df0c-de23-679c69144564', 'aok_knowledgebase_created_by', 'Users', 'users', 'id', 'AOK_KnowledgeBase', 'aok_knowledgebase', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('518ee36f-dfa5-ae74-bfbe-679c69e0f8d2', 'outbound_email_modified_user', 'Users', 'users', 'id', 'OutboundEmailAccounts', 'outbound_email', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('51c206c5-a36f-d490-5780-679c6933a8a9', 'securitygroups_emailtemplates', 'SecurityGroups', 'securitygroups', 'id', 'EmailTemplates', 'email_templates', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'EmailTemplates', 0, 0), ('52158650-ce1e-5103-f77a-679c6953d6ed', 'aok_knowledgebase_assigned_user', 'Users', 'users', 'id', 'AOK_KnowledgeBase', 'aok_knowledgebase', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('52996e8f-43d7-a441-a818-679c698d5a9a', 'outbound_email_created_by', 'Users', 'users', 'id', 'OutboundEmailAccounts', 'outbound_email', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('53029a4e-737b-709f-22c8-679c69b5e5d6', 'securitygroups_aok_knowledgebase', 'SecurityGroups', 'securitygroups', 'id', 'AOK_KnowledgeBase', 'aok_knowledgebase', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'AOK_KnowledgeBase', 0, 0), ('535f9f54-542a-adb1-f71b-679c69f72679', 'outbound_email_assigned_user', 'Users', 'users', 'id', 'OutboundEmailAccounts', 'outbound_email', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('53f0f407-6181-e2da-c0a0-679c69a347e7', 'reminders_modified_user', 'Users', 'users', 'id', 'Reminders', 'reminders', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('544d4a91-3be6-1ed4-3977-679c69c62fc9', 'externaloauthconnection_modified_user', 'Users', 'users', 'id', 'ExternalOAuthConnection', 'external_oauth_connections', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('5500efd7-3c4c-865a-a727-679c69e104f9', 'reminders_created_by', 'Users', 'users', 'id', 'Reminders', 'reminders', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('554e0415-50ef-545c-766a-679c69d2ab74', 'externaloauthconnection_created_by', 'Users', 'users', 'id', 'ExternalOAuthConnection', 'external_oauth_connections', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('562003aa-7965-8a4c-7148-679c69190327', 'reminders_assigned_user', 'Users', 'users', 'id', 'Reminders', 'reminders', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('566fdc96-56b7-2627-52e9-679c6979a109', 'securitygroups_externaloauthconnection', 'SecurityGroups', 'securitygroups', 'id', 'ExternalOAuthConnection', 'external_oauth_connections', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'ExternalOAuthConnection', 0, 0), ('5725ef06-d956-2843-e754-679c69fe09c3', 'reminders_invitees_modified_user', 'Users', 'users', 'id', 'Reminders_Invitees', 'reminders_invitees', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('573bc701-c4b2-b85a-71db-679c69911ad3', 'external_oauth_connections_external_oauth_providers', 'ExternalOAuthProvider', 'external_oauth_providers', 'id', 'ExternalOAuthConnection', 'external_oauth_connections', 'external_oauth_provider_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('57eec5cf-8285-aa54-17e4-679c691d8080', 'reminders_invitees_created_by', 'Users', 'users', 'id', 'Reminders_Invitees', 'reminders_invitees', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('58224fa1-a69d-b0ff-9445-679c696f59bd', 'externaloauthprovider_modified_user', 'Users', 'users', 'id', 'ExternalOAuthProvider', 'external_oauth_providers', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('58f6c612-6abc-198b-4803-679c697e9844', 'reminders_invitees_assigned_user', 'Users', 'users', 'id', 'Reminders_Invitees', 'reminders_invitees', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('591602ea-57fb-26ef-543b-679c69345159', 'externaloauthprovider_created_by', 'Users', 'users', 'id', 'ExternalOAuthProvider', 'external_oauth_providers', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('5a0f7c16-44a9-39f4-068e-679c693aacd1', 'fp_events_modified_user', 'Users', 'users', 'id', 'FP_events', 'fp_events', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('5a4d3ee5-7720-0e72-0296-679c6946db91', 'securitygroups_externaloauthprovider', 'SecurityGroups', 'securitygroups', 'id', 'ExternalOAuthProvider', 'external_oauth_providers', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'ExternalOAuthProvider', 0, 0), ('5b10d4ad-c638-243f-d0a6-679c69d71022', 'fp_events_created_by', 'Users', 'users', 'id', 'FP_events', 'fp_events', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('5b4fb92b-b959-7f46-d69b-679c6923f0ed', 'templatesectionline_modified_user', 'Users', 'users', 'id', 'TemplateSectionLine', 'templatesectionline', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('5bd867bd-c760-b20d-5067-679c69bb0928', 'fp_events_assigned_user', 'Users', 'users', 'id', 'FP_events', 'fp_events', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('5c1f49ad-a19f-35cc-7195-679c698e9b22', 'templatesectionline_created_by', 'Users', 'users', 'id', 'TemplateSectionLine', 'templatesectionline', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('5ccd20eb-cd4e-1a47-201d-679c69ca87d2', 'securitygroups_fp_events', 'SecurityGroups', 'securitygroups', 'id', 'FP_events', 'fp_events', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'FP_events', 0, 0), ('5d78d00e-c4d1-3ba9-6dcc-679c699a7511', 'oauth2tokens_modified_user', 'Users', 'users', 'id', 'OAuth2Tokens', 'oauth2tokens', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('5df1d43e-71b2-a40f-3058-679c698d56d8', 'fp_event_locations_modified_user', 'Users', 'users', 'id', 'FP_Event_Locations', 'fp_event_locations', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('5e58d929-ddb7-9ae9-f3b9-679c69e7b561', 'oauth2tokens_created_by', 'Users', 'users', 'id', 'OAuth2Tokens', 'oauth2tokens', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('5f05e3a5-e400-0a0e-2463-679c69387bde', 'fp_event_locations_created_by', 'Users', 'users', 'id', 'FP_Event_Locations', 'fp_event_locations', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('5f489e30-6f0b-920b-e504-679c69c05b8c', 'oauth2tokens_assigned_user', 'Users', 'users', 'id', 'OAuth2Tokens', 'oauth2tokens', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('5fd33963-3e86-91a8-a05c-679c694c5bb4', 'fp_event_locations_assigned_user', 'Users', 'users', 'id', 'FP_Event_Locations', 'fp_event_locations', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('60305b6e-6f0e-1868-dce5-679c6900e15f', 'oauth2clients_modified_user', 'Users', 'users', 'id', 'OAuth2Clients', 'oauth2clients', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('60cf2403-4a96-356e-0025-679c69da1e4f', 'securitygroups_fp_event_locations', 'SecurityGroups', 'securitygroups', 'id', 'FP_Event_Locations', 'fp_event_locations', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'FP_Event_Locations', 0, 0), ('615302ca-4d2a-c45e-3788-679c698961dc', 'emailtemplates_assigned_user', 'Users', 'users', 'id', 'EmailTemplates', 'email_templates', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('61671bd1-fb1f-daea-2135-679c69bb7744', 'oauth2clients_created_by', 'Users', 'users', 'id', 'OAuth2Clients', 'oauth2clients', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('61b91719-e33f-5937-2692-679c69a4de18', 'optimistic_locking', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0), ('624b50b4-3b5f-c107-183e-679c6971643c', 'oauth2clients_oauth2tokens', 'OAuth2Clients', 'oauth2clients', 'id', 'OAuth2Tokens', 'oauth2tokens', 'client', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('62820d74-b520-bd92-aa9a-679c6967d80a', 'unified_search', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0), ('638a3ac1-4aa1-86d1-7e42-679c697348e9', 'oauth2clients_assigned_user', 'Users', 'users', 'id', 'OAuth2Clients', 'oauth2clients', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('639e43ff-258c-73e8-b33f-679c69f66f78', 'aop_case_events_modified_user', 'Users', 'users', 'id', 'AOP_Case_Events', 'aop_case_events', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('63a70e2a-ad1a-3d23-7a2a-679c696c1824', 'aos_products_modified_user', 'Users', 'users', 'id', 'AOS_Products', 'aos_products', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('646e15b6-9fb4-5ed0-c090-679c69ee60d3', 'surveyresponses_modified_user', 'Users', 'users', 'id', 'SurveyResponses', 'surveyresponses', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('6483b030-594f-2b15-29d5-679c695e88bf', 'aop_case_events_created_by', 'Users', 'users', 'id', 'AOP_Case_Events', 'aop_case_events', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('6559f397-c29d-3a44-5b9e-679c6910522b', 'leads_modified_user', 'Users', 'users', 'id', 'Leads', 'leads', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('6591341a-19f2-ce07-cc61-679c69d5a3e1', 'surveyresponses_created_by', 'Users', 'users', 'id', 'SurveyResponses', 'surveyresponses', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('659b0cc1-b7d8-4ff3-742d-679c6957997c', 'aop_case_events_assigned_user', 'Users', 'users', 'id', 'AOP_Case_Events', 'aop_case_events', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('667410b5-2853-3b98-74d9-679c699a5da5', 'surveyresponses_assigned_user', 'Users', 'users', 'id', 'SurveyResponses', 'surveyresponses', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('669799cf-91e9-8383-5614-679c69b87be3', 'cases_aop_case_events', 'Cases', 'cases', 'id', 'AOP_Case_Events', 'aop_case_events', 'case_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('67642d0a-12bf-c5c2-7539-679c69a0f3f5', 'securitygroups_surveyresponses', 'SecurityGroups', 'securitygroups', 'id', 'SurveyResponses', 'surveyresponses', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'SurveyResponses', 0, 0), ('67aad051-90f6-3939-27fa-679c6958947d', 'aop_case_updates_modified_user', 'Users', 'users', 'id', 'AOP_Case_Updates', 'aop_case_updates', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('683d608b-56a8-d5d6-4340-679c6937cda7', 'surveyresponses_surveyquestionresponses', 'SurveyResponses', 'surveyresponses', 'id', 'SurveyQuestionResponses', 'surveyquestionresponses', 'surveyresponse_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('687aac72-94e1-0611-ea45-679c6913bf5e', 'aop_case_updates_created_by', 'Users', 'users', 'id', 'AOP_Case_Updates', 'aop_case_updates', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('68e37d72-d010-2bfe-92d7-679c69b4cc7d', 'leads_created_by', 'Users', 'users', 'id', 'Leads', 'leads', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('694d90cb-a2bd-49c6-e85f-679c69e64f7e', 'surveyresponses_contacts', 'Contacts', 'contacts', 'id', 'SurveyResponses', 'surveyresponses', 'contact_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('69511854-fb0c-22e4-8b69-679c69cf9aad', 'aop_case_updates_assigned_user', 'Users', 'users', 'id', 'AOP_Case_Updates', 'aop_case_updates', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('6a4af264-65a0-d66e-ab5d-679c696245f0', 'leads_assigned_user', 'Users', 'users', 'id', 'Leads', 'leads', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('6a4cc9ff-56d0-2923-2211-679c69a9c8e8', 'surveyresponses_accounts', 'Accounts', 'accounts', 'id', 'SurveyResponses', 'surveyresponses', 'account_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('6a684e8d-542e-6802-a73c-679c6916a766', 'cases_aop_case_updates', 'Cases', 'cases', 'id', 'AOP_Case_Updates', 'aop_case_updates', 'case_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('6b784b2d-090f-642b-6d1f-679c69a4f20b', 'surveys_modified_user', 'Users', 'users', 'id', 'Surveys', 'surveys', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('6b8b639d-42e9-11be-87e9-679c69993d41', 'aop_case_updates_notes', 'AOP_Case_Updates', 'aop_case_updates', 'id', 'Notes', 'notes', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'AOP_Case_Updates', 0, 0), ('6bb66d1f-ffd1-7bf7-7c03-679c6904939c', 'securitygroups_leads', 'SecurityGroups', 'securitygroups', 'id', 'Leads', 'leads', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'Leads', 0, 0), ('6c3e4a78-effd-78e0-9def-679c69f5fb6b', 'surveys_created_by', 'Users', 'users', 'id', 'Surveys', 'surveys', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('6c718d19-48b3-4d9a-e6bc-679c69a9855c', 'aor_reports_modified_user', 'Users', 'users', 'id', 'AOR_Reports', 'aor_reports', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('6c8c82f4-96fd-51dd-872a-679c697b25e6', 'leads_email_addresses', 'Leads', 'leads', 'id', 'EmailAddresses', 'email_addresses', 'id', 'email_addr_bean_rel', 'bean_id', 'email_address_id', 'many-to-many', 'bean_module', 'Leads', 0, 0), ('6d6116cf-2eac-fec3-4f79-679c69eb5788', 'leads_email_addresses_primary', 'Leads', 'leads', 'id', 'EmailAddresses', 'email_addresses', 'id', 'email_addr_bean_rel', 'bean_id', 'email_address_id', 'many-to-many', 'primary_address', '1', 0, 0), ('6db2466f-ebab-e444-b6b4-679c6932ecfa', 'aor_reports_created_by', 'Users', 'users', 'id', 'AOR_Reports', 'aor_reports', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('6db824b0-53d9-17c8-3f75-679c6982fe70', 'surveys_assigned_user', 'Users', 'users', 'id', 'Surveys', 'surveys', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('6e6c7341-8067-91b2-b04a-679c6928afe0', 'lead_direct_reports', 'Leads', 'leads', 'id', 'Leads', 'leads', 'reports_to_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('6ea0e110-7359-edd4-c962-679c69ca742f', 'securitygroups_surveys', 'SecurityGroups', 'securitygroups', 'id', 'Surveys', 'surveys', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'Surveys', 0, 0), ('6ea1b608-be1b-781e-3ac3-679c69769ae7', 'aor_reports_assigned_user', 'Users', 'users', 'id', 'AOR_Reports', 'aor_reports', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('6f35e34a-cf00-00ca-3727-679c696fce01', 'lead_tasks', 'Leads', 'leads', 'id', 'Tasks', 'tasks', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Leads', 0, 0), ('6f630cff-1fda-db2a-dc4c-679c693cf418', 'notes_assigned_user', 'Users', 'users', 'id', 'Notes', 'notes', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('6f67e640-21b7-711b-9df0-679c69d99684', 'surveys_surveyquestions', 'Surveys', 'surveys', 'id', 'SurveyQuestions', 'surveyquestions', 'survey_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('6f9a3fba-4f60-e799-acd8-679c696c6d43', 'securitygroups_aor_reports', 'SecurityGroups', 'securitygroups', 'id', 'AOR_Reports', 'aor_reports', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'AOR_Reports', 0, 0), ('6ff8ae50-f0d2-9f66-2ea3-679c69ede1bc', 'lead_notes', 'Leads', 'leads', 'id', 'Notes', 'notes', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Leads', 0, 0), ('702a46e7-9c9a-fc53-8a55-679c69b251ce', 'surveys_surveyresponses', 'Surveys', 'surveys', 'id', 'SurveyResponses', 'surveyresponses', 'survey_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('706d0f83-2f36-5f7b-97ae-679c69e665eb', 'aor_reports_aor_fields', 'AOR_Reports', 'aor_reports', 'id', 'AOR_Fields', 'aor_fields', 'aor_report_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('70bb6c3f-24fe-cb6d-8573-679c69f2ef13', 'lead_meetings', 'Leads', 'leads', 'id', 'Meetings', 'meetings', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Leads', 0, 0), ('70ea2e1e-8018-e04c-993e-679c69b256e0', 'surveys_campaigns', 'Surveys', 'surveys', 'id', 'Campaigns', 'campaigns', 'survey_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('71844310-32a7-90b2-97fa-679c6932de46', 'aor_reports_aor_conditions', 'AOR_Reports', 'aor_reports', 'id', 'AOR_Conditions', 'aor_conditions', 'aor_report_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('71d8b807-41b8-5e9d-188a-679c69e8fc44', 'lead_calls', 'Leads', 'leads', 'id', 'Calls', 'calls', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Leads', 0, 0), ('7220b37d-f4db-b8aa-a58c-679c69a2b3c5', 'surveyquestionresponses_modified_user', 'Users', 'users', 'id', 'SurveyQuestionResponses', 'surveyquestionresponses', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('72c3e53a-7536-9e81-6af4-679c6908b2e7', 'aor_scheduled_reports_aor_reports', 'AOR_Reports', 'aor_reports', 'id', 'AOR_Scheduled_Reports', 'aor_scheduled_reports', 'aor_report_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('72cb8a9c-f1d7-7994-3b45-679c699022f7', 'lead_emails', 'Leads', 'leads', 'id', 'Emails', 'emails', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Leads', 0, 0), ('735a9419-05f1-f009-ae85-679c6952ed83', 'surveyquestionresponses_created_by', 'Users', 'users', 'id', 'SurveyQuestionResponses', 'surveyquestionresponses', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('739678df-1996-f9b8-2586-679c69152003', 'lead_campaign_log', 'Leads', 'leads', 'id', 'CampaignLog', 'campaign_log', 'target_id', NULL, NULL, NULL, 'one-to-many', 'target_type', 'Leads', 0, 0), ('73bd3c22-4660-c215-e712-679c6925ff07', 'aor_fields_modified_user', 'Users', 'users', 'id', 'AOR_Fields', 'aor_fields', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('742b5a55-af36-a784-0fef-679c698de6b3', 'surveyquestionresponses_assigned_user', 'Users', 'users', 'id', 'SurveyQuestionResponses', 'surveyquestionresponses', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('74816c42-6cc6-8782-44e6-679c69b79712', 'aor_fields_created_by', 'Users', 'users', 'id', 'AOR_Fields', 'aor_fields', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('74fc5a27-521e-1294-3ac3-679c699b6142', 'securitygroups_surveyquestionresponses', 'SecurityGroups', 'securitygroups', 'id', 'SurveyQuestionResponses', 'surveyquestionresponses', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'SurveyQuestionResponses', 0, 0), ('7541fcf7-a291-34d7-84f4-679c6973e9d7', 'cases_modified_user', 'Users', 'users', 'id', 'Cases', 'cases', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('75dc5ba6-1610-6fcf-fd84-679c69c9c09c', 'aor_charts_modified_user', 'Users', 'users', 'id', 'AOR_Charts', 'aor_charts', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('760bbdb2-eeef-410d-26ba-679c69560493', 'surveyquestions_modified_user', 'Users', 'users', 'id', 'SurveyQuestions', 'surveyquestions', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('763e78a5-0273-212e-83d4-679c69d2e13d', 'cases_created_by', 'Users', 'users', 'id', 'Cases', 'cases', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('76410dda-9eed-3d14-cf8c-679c69ff513f', 'aos_products_created_by', 'Users', 'users', 'id', 'AOS_Products', 'aos_products', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('76c62624-d580-9288-5d60-679c69969eb0', 'aor_charts_created_by', 'Users', 'users', 'id', 'AOR_Charts', 'aor_charts', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('76e7a2b7-af89-bcaa-3361-679c69aa6ca9', 'surveyquestions_created_by', 'Users', 'users', 'id', 'SurveyQuestions', 'surveyquestions', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('77115b63-91d0-a7a1-3201-679c69c2c9d9', 'cases_assigned_user', 'Users', 'users', 'id', 'Cases', 'cases', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('77ab35c9-58e8-0f1c-7cc5-679c69a9ec5c', 'surveyquestions_assigned_user', 'Users', 'users', 'id', 'SurveyQuestions', 'surveyquestions', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('77b3b1db-c037-0828-32ec-679c694d5b86', 'aor_charts_aor_reports', 'AOR_Reports', 'aor_reports', 'id', 'AOR_Charts', 'aor_charts', 'aor_report_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('77ec8480-739a-21db-623c-679c69020e1e', 'securitygroups_cases', 'SecurityGroups', 'securitygroups', 'id', 'Cases', 'cases', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'Cases', 0, 0), ('78696809-3401-e2c1-2ecb-679c6956b6ed', 'securitygroups_surveyquestions', 'SecurityGroups', 'securitygroups', 'id', 'SurveyQuestions', 'surveyquestions', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'SurveyQuestions', 0, 0), ('7897d3ad-4254-e1cf-f3ad-679c69af3954', 'aor_conditions_modified_user', 'Users', 'users', 'id', 'AOR_Conditions', 'aor_conditions', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('78b0145b-3e40-30c4-01d0-679c69d839c3', 'case_calls', 'Cases', 'cases', 'id', 'Calls', 'calls', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Cases', 0, 0), ('795ec850-56ac-9c99-c46a-679c6902f23d', 'surveyquestions_surveyquestionoptions', 'SurveyQuestions', 'surveyquestions', 'id', 'SurveyQuestionOptions', 'surveyquestionoptions', 'survey_question_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('79aa15d5-ed71-75c8-90f5-679c69f789f8', 'aor_conditions_created_by', 'Users', 'users', 'id', 'AOR_Conditions', 'aor_conditions', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('79f972e8-6897-23ec-ab58-679c69736345', 'case_tasks', 'Cases', 'cases', 'id', 'Tasks', 'tasks', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Cases', 0, 0), ('7a463edb-16da-6e70-ed79-679c6936da22', 'surveyquestions_surveyquestionresponses', 'SurveyQuestions', 'surveyquestions', 'id', 'SurveyQuestionResponses', 'surveyquestionresponses', 'surveyquestion_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('7ad7723b-3f42-14a3-6c14-679c6990bec0', 'case_notes', 'Cases', 'cases', 'id', 'Notes', 'notes', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Cases', 0, 0), ('7b18cadd-8b68-1698-b246-679c69c2ce22', 'aor_scheduled_reports_modified_user', 'Users', 'users', 'id', 'AOR_Scheduled_Reports', 'aor_scheduled_reports', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('7b80c6c7-8213-3843-d65b-679c69f7ea57', 'surveyquestionoptions_modified_user', 'Users', 'users', 'id', 'SurveyQuestionOptions', 'surveyquestionoptions', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('7be627d4-4d3c-6ea0-7ea7-679c69f699e8', 'aor_scheduled_reports_created_by', 'Users', 'users', 'id', 'AOR_Scheduled_Reports', 'aor_scheduled_reports', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('7bf45a6c-2124-4a87-795b-679c69e39e92', 'case_meetings', 'Cases', 'cases', 'id', 'Meetings', 'meetings', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Cases', 0, 0), ('7c58d740-9309-cba1-c97e-679c6911b3a9', 'surveyquestionoptions_created_by', 'Users', 'users', 'id', 'SurveyQuestionOptions', 'surveyquestionoptions', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('7cc9153c-0d62-b69f-3feb-679c690c7d6b', 'case_emails', 'Cases', 'cases', 'id', 'Emails', 'emails', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Cases', 0, 0), ('7cda71c4-75bb-ed41-c844-679c69c8bb0c', 'securitygroups_aor_scheduled_reports', 'SecurityGroups', 'securitygroups', 'id', 'AOR_Scheduled_Reports', 'aor_scheduled_reports', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'AOR_Scheduled_Reports', 0, 0), ('7d5cc924-3eb5-46e9-523c-679c698c8d7c', 'surveyquestionoptions_assigned_user', 'Users', 'users', 'id', 'SurveyQuestionOptions', 'surveyquestionoptions', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('7da8034e-49c8-47f8-1f75-679c69493433', 'cases_created_contact', 'Contacts', 'contacts', 'id', 'Cases', 'cases', 'contact_created_by_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('7e150e26-9483-3258-7698-679c691d8f24', 'aos_contracts_modified_user', 'Users', 'users', 'id', 'AOS_Contracts', 'aos_contracts', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0); INSERT INTO `relationships` VALUES ('7e4f4fd6-ce85-183c-c42c-679c695e1d25', 'securitygroups_surveyquestionoptions', 'SecurityGroups', 'securitygroups', 'id', 'SurveyQuestionOptions', 'surveyquestionoptions', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'SurveyQuestionOptions', 0, 0), ('7f3556b4-9d58-8755-f772-679c69775e48', 'aos_contracts_created_by', 'Users', 'users', 'id', 'AOS_Contracts', 'aos_contracts', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('7f79c46b-786e-99b8-0130-679c6960628d', 'bugs_modified_user', 'Users', 'users', 'id', 'Bugs', 'bugs', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('7ffb5c9b-6572-2a86-31ac-679c6979b623', 'aos_contracts_assigned_user', 'Users', 'users', 'id', 'AOS_Contracts', 'aos_contracts', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('804ac025-0cca-eef2-a4b2-679c69064d37', 'bugs_created_by', 'Users', 'users', 'id', 'Bugs', 'bugs', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('80a0d85c-1f95-1e74-422a-679c697abb6d', 'accounts_bugs', 'Accounts', 'accounts', 'id', 'Bugs', 'bugs', 'id', 'accounts_bugs', 'account_id', 'bug_id', 'many-to-many', NULL, NULL, 0, 0), ('80d6c3a2-b9ab-f1f8-7a1d-679c6932ae65', 'securitygroups_aos_contracts', 'SecurityGroups', 'securitygroups', 'id', 'AOS_Contracts', 'aos_contracts', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'AOS_Contracts', 0, 0), ('815c25b6-14d6-bddb-f202-679c693d23bb', 'bugs_assigned_user', 'Users', 'users', 'id', 'Bugs', 'bugs', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('81b5cd30-03f6-ccb9-9282-679c6952af6b', 'accounts_contacts', 'Accounts', 'accounts', 'id', 'Contacts', 'contacts', 'id', 'accounts_contacts', 'account_id', 'contact_id', 'many-to-many', NULL, NULL, 0, 0), ('81c9e2c8-212f-270e-be49-679c697b3e8a', 'aos_contracts_tasks', 'AOS_Contracts', 'aos_contracts', 'id', 'Tasks', 'tasks', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'AOS_Contracts', 0, 0), ('81d90271-60e0-3038-565d-679c69109744', 'securitygroups_notes', 'SecurityGroups', 'securitygroups', 'id', 'Notes', 'notes', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'Notes', 0, 0), ('825eb788-e76c-3f61-3c18-679c696ae6ab', 'securitygroups_bugs', 'SecurityGroups', 'securitygroups', 'id', 'Bugs', 'bugs', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'Bugs', 0, 0), ('82c76f94-2629-0e01-b06f-679c69f77aa5', 'accounts_opportunities', 'Accounts', 'accounts', 'id', 'Opportunities', 'opportunities', 'id', 'accounts_opportunities', 'account_id', 'opportunity_id', 'many-to-many', NULL, NULL, 0, 0), ('830e6cd2-b14d-dcca-8fb6-679c69beaf20', 'aos_contracts_notes', 'AOS_Contracts', 'aos_contracts', 'id', 'Notes', 'notes', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'AOS_Contracts', 0, 0), ('832fe5c6-7389-c3ab-2b68-679c69e4a4e0', 'bug_tasks', 'Bugs', 'bugs', 'id', 'Tasks', 'tasks', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Bugs', 0, 0), ('83e57931-874a-25c4-5322-679c6943c082', 'calls_contacts', 'Calls', 'calls', 'id', 'Contacts', 'contacts', 'id', 'calls_contacts', 'call_id', 'contact_id', 'many-to-many', NULL, NULL, 0, 0), ('83f0392f-7c49-983b-0430-679c69bfc23f', 'aos_contracts_meetings', 'AOS_Contracts', 'aos_contracts', 'id', 'Meetings', 'meetings', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'AOS_Contracts', 0, 0), ('842edf26-4582-94c0-f73e-679c6924fb59', 'bug_meetings', 'Bugs', 'bugs', 'id', 'Meetings', 'meetings', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Bugs', 0, 0), ('84a798ab-07ae-ad9b-240f-679c6992578c', 'calls_users', 'Calls', 'calls', 'id', 'Users', 'users', 'id', 'calls_users', 'call_id', 'user_id', 'many-to-many', NULL, NULL, 0, 0), ('84bfb0a9-96a5-7de2-1c86-679c693a9668', 'aos_contracts_calls', 'AOS_Contracts', 'aos_contracts', 'id', 'Calls', 'calls', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'AOS_Contracts', 0, 0), ('84f60502-fe9c-8e31-524c-679c6977c45f', 'bug_calls', 'Bugs', 'bugs', 'id', 'Calls', 'calls', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Bugs', 0, 0), ('858ccfcf-ff7d-dad2-970f-679c699a69f1', 'calls_leads', 'Calls', 'calls', 'id', 'Leads', 'leads', 'id', 'calls_leads', 'call_id', 'lead_id', 'many-to-many', NULL, NULL, 0, 0), ('8611d1df-4aaf-8e9a-469f-679c69c9638a', 'bug_emails', 'Bugs', 'bugs', 'id', 'Emails', 'emails', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Bugs', 0, 0), ('86285a17-6f8e-3213-59d4-679c69155cb2', 'aos_contracts_aos_products_quotes', 'AOS_Contracts', 'aos_contracts', 'id', 'AOS_Products_Quotes', 'aos_products_quotes', 'parent_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('86850fce-0d00-ed6b-7d32-679c694e6705', 'cases_bugs', 'Cases', 'cases', 'id', 'Bugs', 'bugs', 'id', 'cases_bugs', 'case_id', 'bug_id', 'many-to-many', NULL, NULL, 0, 0), ('86e49118-6283-a792-2109-679c6923cabe', 'bug_notes', 'Bugs', 'bugs', 'id', 'Notes', 'notes', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Bugs', 0, 0), ('8711912d-b270-3eba-fb2d-679c692fd7cd', 'aos_contracts_aos_line_item_groups', 'AOS_Contracts', 'aos_contracts', 'id', 'AOS_Line_Item_Groups', 'aos_line_item_groups', 'parent_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('8751b46e-7ed2-0dfd-ad8e-679c6957d4c1', 'contacts_bugs', 'Contacts', 'contacts', 'id', 'Bugs', 'bugs', 'id', 'contacts_bugs', 'contact_id', 'bug_id', 'many-to-many', NULL, NULL, 0, 0), ('87b532e5-f72d-6ffd-7e26-679c69fac9bf', 'bugs_release', 'Releases', 'releases', 'id', 'Bugs', 'bugs', 'found_in_release', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('88117fc4-e4ee-19a4-8585-679c6983c6b5', 'contacts_cases', 'Contacts', 'contacts', 'id', 'Cases', 'cases', 'id', 'contacts_cases', 'contact_id', 'case_id', 'many-to-many', NULL, NULL, 0, 0), ('881fa1d4-7013-1884-e8e6-679c69f81e77', 'aos_invoices_modified_user', 'Users', 'users', 'id', 'AOS_Invoices', 'aos_invoices', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('887c3a61-8173-c447-267e-679c694d6678', 'bugs_fixed_in_release', 'Releases', 'releases', 'id', 'Bugs', 'bugs', 'fixed_in_release', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('88d4ee95-e9f2-46d3-9540-679c69491264', 'contacts_users', 'Contacts', 'contacts', 'id', 'Users', 'users', 'id', 'contacts_users', 'contact_id', 'user_id', 'many-to-many', NULL, NULL, 0, 0), ('88f1f224-38c4-4b0c-8926-679c698afc3d', 'aos_invoices_created_by', 'Users', 'users', 'id', 'AOS_Invoices', 'aos_invoices', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('8984060b-eeea-4812-d6eb-679c6911c9b6', 'user_direct_reports', 'Users', 'users', 'id', 'Users', 'users', 'reports_to_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('8a10706b-58c5-91f2-5f9d-679c694583e3', 'emails_bugs_rel', 'Emails', 'emails', 'id', 'Bugs', 'bugs', 'id', 'emails_beans', 'email_id', 'bean_id', 'many-to-many', 'bean_module', 'Bugs', 0, 0), ('8a306442-3212-cb20-2e3e-679c693bd05c', 'aos_invoices_assigned_user', 'Users', 'users', 'id', 'AOS_Invoices', 'aos_invoices', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('8a710e61-1a03-3a1d-4d08-679c6908febe', 'users_users_password_link', 'Users', 'users', 'id', NULL, 'users_signatures', 'user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('8b1d40ae-9d8a-8475-cec0-679c69512c24', 'securitygroups_aos_invoices', 'SecurityGroups', 'securitygroups', 'id', 'AOS_Invoices', 'aos_invoices', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'AOS_Invoices', 0, 0), ('8b23fab5-84ff-0ff0-ecbd-679c69b5f29f', 'emails_cases_rel', 'Emails', 'emails', 'id', 'Cases', 'cases', 'id', 'emails_beans', 'email_id', 'bean_id', 'many-to-many', 'bean_module', 'Cases', 0, 0), ('8b7c773c-c7ae-b53e-b48f-679c69a65d10', 'users_email_addresses', 'Users', 'users', 'id', 'EmailAddresses', 'email_addresses', 'id', 'email_addr_bean_rel', 'bean_id', 'email_address_id', 'many-to-many', 'bean_module', 'Users', 0, 0), ('8c07a252-b742-faa0-23b0-679c6910aa57', 'aos_invoices_aos_product_quotes', 'AOS_Invoices', 'aos_invoices', 'id', 'AOS_Products_Quotes', 'aos_products_quotes', 'parent_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('8c2a082f-37b7-4b8f-67ce-679c693ad841', 'emails_opportunities_rel', 'Emails', 'emails', 'id', 'Opportunities', 'opportunities', 'id', 'emails_beans', 'email_id', 'bean_id', 'many-to-many', 'bean_module', 'Opportunities', 0, 0), ('8c6c5341-06db-fca4-a120-679c6934161a', 'users_email_addresses_primary', 'Users', 'users', 'id', 'EmailAddresses', 'email_addresses', 'id', 'email_addr_bean_rel', 'bean_id', 'email_address_id', 'many-to-many', 'primary_address', '1', 0, 0), ('8cdca3fa-4202-d943-3322-679c69deedff', 'aos_invoices_aos_line_item_groups', 'AOS_Invoices', 'aos_invoices', 'id', 'AOS_Line_Item_Groups', 'aos_line_item_groups', 'parent_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('8cf6359b-2211-aca8-301d-679c69196d64', 'emails_tasks_rel', 'Emails', 'emails', 'id', 'Tasks', 'tasks', 'id', 'emails_beans', 'email_id', 'bean_id', 'many-to-many', 'bean_module', 'Tasks', 0, 0), ('8d81bf45-54e2-3032-f493-679c693d43f4', 'campaignlog_contact', 'CampaignLog', 'campaign_log', 'related_id', 'Contacts', 'contacts', 'id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('8daa03ec-ba8b-c056-6f02-679c69b0e71a', 'notes_modified_user', 'Users', 'users', 'id', 'Notes', 'notes', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('8e2f2e9f-1cac-ba8e-026a-679c69fda00e', 'emails_users_rel', 'Emails', 'emails', 'id', 'Users', 'users', 'id', 'emails_beans', 'email_id', 'bean_id', 'many-to-many', 'bean_module', 'Users', 0, 0), ('8e61cc11-3229-52b7-f8a5-679c69531a16', 'aos_pdf_templates_modified_user', 'Users', 'users', 'id', 'AOS_PDF_Templates', 'aos_pdf_templates', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('8e6a451c-30d4-9a67-1db0-679c69280968', 'campaignlog_lead', 'CampaignLog', 'campaign_log', 'related_id', 'Leads', 'leads', 'id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('8f24c331-c04a-10ee-2764-679c69164630', 'emails_project_task_rel', 'Emails', 'emails', 'id', 'ProjectTask', 'project_task', 'id', 'emails_beans', 'email_id', 'bean_id', 'many-to-many', 'bean_module', 'ProjectTask', 0, 0), ('8f522122-7c78-dfbf-3c2c-679c69cf0a32', 'aos_pdf_templates_created_by', 'Users', 'users', 'id', 'AOS_PDF_Templates', 'aos_pdf_templates', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('8f922001-cb42-5306-66a8-679c69ad2c30', 'campaignlog_created_opportunities', 'CampaignLog', 'campaign_log', 'related_id', 'Opportunities', 'opportunities', 'id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('901927e4-1d08-c163-875b-679c698314be', 'emails_projects_rel', 'Emails', 'emails', 'id', 'Project', 'project', 'id', 'emails_beans', 'email_id', 'bean_id', 'many-to-many', 'bean_module', 'Project', 0, 0), ('903d8ad1-9ec3-f3a0-6663-679c697e2ea2', 'aos_pdf_templates_assigned_user', 'Users', 'users', 'id', 'AOS_PDF_Templates', 'aos_pdf_templates', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('905e949d-771a-fd9e-dcfb-679c6959c799', 'campaignlog_targeted_users', 'CampaignLog', 'campaign_log', 'target_id', 'Users', 'users', 'id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('90e809b6-4bb0-e8b3-f714-679c6935f892', 'emails_prospects_rel', 'Emails', 'emails', 'id', 'Prospects', 'prospects', 'id', 'emails_beans', 'email_id', 'bean_id', 'many-to-many', 'bean_module', 'Prospects', 0, 0), ('912755e3-62e1-a6c5-04fb-679c69e67b27', 'securitygroups_aos_pdf_templates', 'SecurityGroups', 'securitygroups', 'id', 'AOS_PDF_Templates', 'aos_pdf_templates', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'AOS_PDF_Templates', 0, 0), ('914b25e8-350e-f3aa-9978-679c69995a1a', 'campaignlog_sent_emails', 'CampaignLog', 'campaign_log', 'related_id', 'Emails', 'emails', 'id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('91a40c07-26c0-0a8e-0b8e-679c6960e405', 'aos_products_assigned_user', 'Users', 'users', 'id', 'AOS_Products', 'aos_products', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('921a5ad2-3df1-d7a9-eaef-679c697e51db', 'meetings_contacts', 'Meetings', 'meetings', 'id', 'Contacts', 'contacts', 'id', 'meetings_contacts', 'meeting_id', 'contact_id', 'many-to-many', NULL, NULL, 0, 0), ('92666eb7-9748-062b-48cf-679c69256450', 'securitygroups_project', 'SecurityGroups', 'securitygroups', 'id', 'Project', 'project', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'Project', 0, 0), ('930e7843-6061-c9ab-118d-679c695e1280', 'aos_product_categories_modified_user', 'Users', 'users', 'id', 'AOS_Product_Categories', 'aos_product_categories', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('931747f5-098f-cb6c-903b-679c69b2a12c', 'meetings_users', 'Meetings', 'meetings', 'id', 'Users', 'users', 'id', 'meetings_users', 'meeting_id', 'user_id', 'many-to-many', NULL, NULL, 0, 0), ('9399fce6-396d-2f95-81d5-679c69df5f0f', 'projects_notes', 'Project', 'project', 'id', 'Notes', 'notes', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Project', 0, 0), ('93f458c1-a7f5-0ac4-d86e-679c69b6593b', 'aos_product_categories_created_by', 'Users', 'users', 'id', 'AOS_Product_Categories', 'aos_product_categories', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('944b94a9-46c4-765c-a4bc-679c69667f68', 'meetings_leads', 'Meetings', 'meetings', 'id', 'Leads', 'leads', 'id', 'meetings_leads', 'meeting_id', 'lead_id', 'many-to-many', NULL, NULL, 0, 0), ('9460a81c-61f7-464b-9973-679c6962d0f3', 'projects_tasks', 'Project', 'project', 'id', 'Tasks', 'tasks', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Project', 0, 0), ('94f3d16e-e3e0-bd91-f196-679c699c0071', 'aos_product_categories_assigned_user', 'Users', 'users', 'id', 'AOS_Product_Categories', 'aos_product_categories', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('952a15e0-fbaf-fe7f-a04c-679c69d19d7a', 'opportunities_contacts', 'Opportunities', 'opportunities', 'id', 'Contacts', 'contacts', 'id', 'opportunities_contacts', 'opportunity_id', 'contact_id', 'many-to-many', NULL, NULL, 0, 0), ('952bd0a4-5029-d915-7c47-679c695ad4b4', 'projects_meetings', 'Project', 'project', 'id', 'Meetings', 'meetings', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Project', 0, 0), ('9613982d-e2d3-bbfa-8002-679c69bd953e', 'projects_calls', 'Project', 'project', 'id', 'Calls', 'calls', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Project', 0, 0), ('9673ce3c-1aea-4f44-afbc-679c691ffb88', 'securitygroups_aos_product_categories', 'SecurityGroups', 'securitygroups', 'id', 'AOS_Product_Categories', 'aos_product_categories', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'AOS_Product_Categories', 0, 0), ('96935298-fcda-e62d-4069-679c69c223ca', 'prospect_list_campaigns', 'ProspectLists', 'prospect_lists', 'id', 'Campaigns', 'campaigns', 'id', 'prospect_list_campaigns', 'prospect_list_id', 'campaign_id', 'many-to-many', NULL, NULL, 0, 0), ('970b8561-b51a-cd46-03e7-679c69366e86', 'projects_emails', 'Project', 'project', 'id', 'Emails', 'emails', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Project', 0, 0), ('978d0e33-b349-dcc6-dbec-679c69453774', 'prospect_list_contacts', 'ProspectLists', 'prospect_lists', 'id', 'Contacts', 'contacts', 'id', 'prospect_lists_prospects', 'prospect_list_id', 'related_id', 'many-to-many', 'related_type', 'Contacts', 0, 0), ('97b7d518-e54a-b308-1272-679c69c15dcd', 'sub_product_categories', 'AOS_Product_Categories', 'aos_product_categories', 'id', 'AOS_Product_Categories', 'aos_product_categories', 'parent_category_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('983473ba-2048-028b-fb29-679c6926e328', 'projects_project_tasks', 'Project', 'project', 'id', 'ProjectTask', 'project_task', 'project_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('986c054e-05b1-12a4-5bd3-679c6968e3db', 'prospect_list_prospects', 'ProspectLists', 'prospect_lists', 'id', 'Prospects', 'prospects', 'id', 'prospect_lists_prospects', 'prospect_list_id', 'related_id', 'many-to-many', 'related_type', 'Prospects', 0, 0), ('98ef99d4-3c24-2691-2d18-679c69ab572f', 'projects_assigned_user', 'Users', 'users', 'id', 'Project', 'project', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('9963a324-f774-c05d-7be1-679c69da048f', 'prospect_list_leads', 'ProspectLists', 'prospect_lists', 'id', 'Leads', 'leads', 'id', 'prospect_lists_prospects', 'prospect_list_id', 'related_id', 'many-to-many', 'related_type', 'Leads', 0, 0), ('99f578f6-8a48-25a5-703f-679c69712f64', 'projects_modified_user', 'Users', 'users', 'id', 'Project', 'project', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('9a72f40e-bf84-a39b-57a0-679c698dbc1f', 'prospect_list_users', 'ProspectLists', 'prospect_lists', 'id', 'Users', 'users', 'id', 'prospect_lists_prospects', 'prospect_list_id', 'related_id', 'many-to-many', 'related_type', 'Users', 0, 0), ('9aec2e68-02cb-b048-ea5e-679c69ff90a4', 'projects_created_by', 'Users', 'users', 'id', 'Project', 'project', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('9b7c8ab9-4493-8202-8344-679c69592fd2', 'prospect_list_accounts', 'ProspectLists', 'prospect_lists', 'id', 'Accounts', 'accounts', 'id', 'prospect_lists_prospects', 'prospect_list_id', 'related_id', 'many-to-many', 'related_type', 'Accounts', 0, 0), ('9c180eb2-911f-be92-3d7f-679c691e9413', 'notes_created_by', 'Users', 'users', 'id', 'Notes', 'notes', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('9c51b84b-43b4-c3da-8198-679c69b5e89d', 'roles_users', 'Roles', 'roles', 'id', 'Users', 'users', 'id', 'roles_users', 'role_id', 'user_id', 'many-to-many', NULL, NULL, 0, 0), ('9c95f2b3-ffee-4144-1930-679c697cddb5', 'securitygroups_projecttask', 'SecurityGroups', 'securitygroups', 'id', 'ProjectTask', 'project_task', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'ProjectTask', 0, 0), ('9d176b61-a19a-cbc3-01ab-679c69e7c2d1', 'projects_bugs', 'Project', 'project', 'id', 'Bugs', 'bugs', 'id', 'projects_bugs', 'project_id', 'bug_id', 'many-to-many', NULL, NULL, 0, 0), ('9d61368a-ccd9-a115-30ba-679c69e932e3', 'project_tasks_notes', 'ProjectTask', 'project_task', 'id', 'Notes', 'notes', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'ProjectTask', 0, 0), ('9e2a5942-82ca-146b-0b27-679c6986e84a', 'project_tasks_tasks', 'ProjectTask', 'project_task', 'id', 'Tasks', 'tasks', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'ProjectTask', 0, 0), ('9e40e78c-5587-884b-1186-679c6941923b', 'projects_cases', 'Project', 'project', 'id', 'Cases', 'cases', 'id', 'projects_cases', 'project_id', 'case_id', 'many-to-many', NULL, NULL, 0, 0), ('9f254e41-5375-e1aa-5f41-679c691b8da7', 'project_tasks_meetings', 'ProjectTask', 'project_task', 'id', 'Meetings', 'meetings', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'ProjectTask', 0, 0), ('9f5ad181-b2ab-6d5f-d2cf-679c69ee1739', 'projects_accounts', 'Project', 'project', 'id', 'Accounts', 'accounts', 'id', 'projects_accounts', 'project_id', 'account_id', 'many-to-many', NULL, NULL, 0, 0), ('a01eb1f1-52a4-d276-9e15-679c69bd6690', 'project_tasks_calls', 'ProjectTask', 'project_task', 'id', 'Calls', 'calls', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'ProjectTask', 0, 0), ('a0bb0633-ee34-08c2-be9a-679c69e30b23', 'projects_contacts', 'Project', 'project', 'id', 'Contacts', 'contacts', 'id', 'projects_contacts', 'project_id', 'contact_id', 'many-to-many', NULL, NULL, 0, 0), ('a0eaa877-cf69-e88c-1288-679c694e29a7', 'project_tasks_emails', 'ProjectTask', 'project_task', 'id', 'Emails', 'emails', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'ProjectTask', 0, 0), ('a18bef12-b43c-16c0-f905-679c69eb2cdd', 'projects_opportunities', 'Project', 'project', 'id', 'Opportunities', 'opportunities', 'id', 'projects_opportunities', 'project_id', 'opportunity_id', 'many-to-many', NULL, NULL, 0, 0), ('a1c62d86-4ca9-2c2f-f333-679c69eca187', 'project_tasks_assigned_user', 'Users', 'users', 'id', 'ProjectTask', 'project_task', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('a2a8a230-8b4c-fd79-0646-679c6949baeb', 'acl_roles_actions', 'ACLRoles', 'acl_roles', 'id', 'ACLActions', 'acl_actions', 'id', 'acl_roles_actions', 'role_id', 'action_id', 'many-to-many', NULL, NULL, 0, 0), ('a2bb018b-1a0c-fcd5-6748-679c69e36e65', 'project_tasks_modified_user', 'Users', 'users', 'id', 'ProjectTask', 'project_task', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('a3a2129a-8e7a-f938-ffe3-679c69ded1d1', 'project_tasks_created_by', 'Users', 'users', 'id', 'ProjectTask', 'project_task', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('a3e8403a-d098-c625-9e55-679c6933fceb', 'acl_roles_users', 'ACLRoles', 'acl_roles', 'id', 'Users', 'users', 'id', 'acl_roles_users', 'role_id', 'user_id', 'many-to-many', NULL, NULL, 0, 0), ('a490d8e5-c5f2-fc83-b00b-679c69a2dd55', 'campaigns_modified_user', 'Users', 'users', 'id', 'Campaigns', 'campaigns', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('a4db1e0e-4062-617b-7b7b-679c6902e508', 'email_marketing_prospect_lists', 'EmailMarketing', 'email_marketing', 'id', 'ProspectLists', 'prospect_lists', 'id', 'email_marketing_prospect_lists', 'email_marketing_id', 'prospect_list_id', 'many-to-many', NULL, NULL, 0, 0), ('a56021fa-3f54-3212-8997-679c6961e554', 'campaigns_created_by', 'Users', 'users', 'id', 'Campaigns', 'campaigns', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('a601dbc2-d4af-6954-414e-679c69942668', 'leads_documents', 'Leads', 'leads', 'id', 'Documents', 'documents', 'id', 'linked_documents', 'parent_id', 'document_id', 'many-to-many', 'parent_type', 'Leads', 0, 0), ('a65417cc-58a3-64bf-a794-679c69857e47', 'campaigns_assigned_user', 'Users', 'users', 'id', 'Campaigns', 'campaigns', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('a6ff952a-9a52-aa35-57eb-679c69fc58ad', 'documents_accounts', 'Documents', 'documents', 'id', 'Accounts', 'accounts', 'id', 'documents_accounts', 'document_id', 'account_id', 'many-to-many', NULL, NULL, 0, 0), ('a74e1fef-f293-b87d-54d8-679c695e7ca3', 'securitygroups_campaigns', 'SecurityGroups', 'securitygroups', 'id', 'Campaigns', 'campaigns', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'Campaigns', 0, 0), ('a81a38e4-bddd-6531-683b-679c69e0697c', 'documents_contacts', 'Documents', 'documents', 'id', 'Contacts', 'contacts', 'id', 'documents_contacts', 'document_id', 'contact_id', 'many-to-many', NULL, NULL, 0, 0), ('a8512bbf-379e-099e-961d-679c692c2ef3', 'campaign_accounts', 'Campaigns', 'campaigns', 'id', 'Accounts', 'accounts', 'campaign_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('a884055a-82c1-fb98-f38f-679c693d4954', 'securitygroups_aos_products', 'SecurityGroups', 'securitygroups', 'id', 'AOS_Products', 'aos_products', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'AOS_Products', 0, 0), ('a8f4a09c-af29-ac5e-4c95-679c6966cf9a', 'documents_opportunities', 'Documents', 'documents', 'id', 'Opportunities', 'opportunities', 'id', 'documents_opportunities', 'document_id', 'opportunity_id', 'many-to-many', NULL, NULL, 0, 0), ('a936156f-f75c-dd10-dd81-679c6989517b', 'campaign_contacts', 'Campaigns', 'campaigns', 'id', 'Contacts', 'contacts', 'campaign_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('a9b4911b-efac-98ce-2e74-679c69ff053f', 'documents_cases', 'Documents', 'documents', 'id', 'Cases', 'cases', 'id', 'documents_cases', 'document_id', 'case_id', 'many-to-many', NULL, NULL, 0, 0), ('a9e00c02-2250-2fb0-983f-679c691ffc0f', 'calls_modified_user', 'Users', 'users', 'id', 'Calls', 'calls', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('aa6ba9f5-8211-6a19-2010-679c698ed601', 'campaign_leads', 'Campaigns', 'campaigns', 'id', 'Leads', 'leads', 'campaign_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('aaabe4a0-4651-67a7-01f8-679c69b5973b', 'documents_bugs', 'Documents', 'documents', 'id', 'Bugs', 'bugs', 'id', 'documents_bugs', 'document_id', 'bug_id', 'many-to-many', NULL, NULL, 0, 0), ('ab788717-a6c9-92fd-e2de-679c697bb323', 'campaign_prospects', 'Campaigns', 'campaigns', 'id', 'Prospects', 'prospects', 'campaign_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('aba0a32a-669c-7e92-ebb8-679c69e076b9', 'aok_knowledgebase_categories', 'AOK_KnowledgeBase', 'aok_knowledgebase', 'id', 'AOK_Knowledge_Base_Categories', 'aok_knowledge_base_categories', 'id', 'aok_knowledgebase_categories', 'aok_knowledgebase_id', 'aok_knowledge_base_categories_id', 'many-to-many', NULL, NULL, 0, 0), ('ac611492-9a00-18f1-aa22-679c6951c5ca', 'campaign_opportunities', 'Campaigns', 'campaigns', 'id', 'Opportunities', 'opportunities', 'campaign_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('ac9b55d4-c0a4-d389-b06f-679c69c5bc92', 'am_projecttemplates_project_1', 'AM_ProjectTemplates', 'am_projecttemplates', 'id', 'Project', 'project', 'id', 'am_projecttemplates_project_1_c', 'am_projecttemplates_project_1am_projecttemplates_ida', 'am_projecttemplates_project_1project_idb', 'many-to-many', NULL, NULL, 0, 0), ('ad28fd6d-eb2e-bbf9-db7d-679c69abf849', 'campaign_notes', 'Campaigns', 'campaigns', 'id', 'Notes', 'notes', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Campaigns', 0, 0), ('ad6d9cd2-8d86-4a6c-1854-679c69e22103', 'am_projecttemplates_contacts_1', 'AM_ProjectTemplates', 'am_projecttemplates', 'id', 'Contacts', 'contacts', 'id', 'am_projecttemplates_contacts_1_c', 'am_projecttemplates_ida', 'contacts_idb', 'many-to-many', NULL, NULL, 0, 0), ('ae244f5c-084d-ac32-5972-679c698bbc9a', 'campaign_email_marketing', 'Campaigns', 'campaigns', 'id', 'EmailMarketing', 'email_marketing', 'campaign_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('ae81963d-351f-e6fb-1b9f-679c696358d9', 'am_projecttemplates_users_1', 'AM_ProjectTemplates', 'am_projecttemplates', 'id', 'Users', 'users', 'id', 'am_projecttemplates_users_1_c', 'am_projecttemplates_ida', 'users_idb', 'many-to-many', NULL, NULL, 0, 0), ('af0f7024-0b6a-dbf3-4c06-679c69a1ab79', 'campaign_emailman', 'Campaigns', 'campaigns', 'id', 'EmailMan', 'emailman', 'campaign_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('af98f85d-dd34-822f-3e29-679c6903c62f', 'am_tasktemplates_am_projecttemplates', 'AM_ProjectTemplates', 'am_projecttemplates', 'id', 'AM_TaskTemplates', 'am_tasktemplates', 'id', 'am_tasktemplates_am_projecttemplates_c', 'am_tasktemplates_am_projecttemplatesam_projecttemplates_ida', 'am_tasktemplates_am_projecttemplatesam_tasktemplates_idb', 'many-to-many', NULL, NULL, 0, 0), ('b00d371f-f223-5f7c-92d0-679c6975b481', 'campaign_campaignlog', 'Campaigns', 'campaigns', 'id', 'CampaignLog', 'campaign_log', 'campaign_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('b0d342fe-6ab8-3eb8-5952-679c6988a91f', 'campaign_assigned_user', 'Users', 'users', 'id', 'Campaigns', 'campaigns', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('b184dfe0-6943-bb4b-c44d-679c691165ed', 'aos_contracts_documents', 'AOS_Contracts', 'aos_contracts', 'id', 'Documents', 'documents', 'id', 'aos_contracts_documents', 'aos_contracts_id', 'documents_id', 'many-to-many', NULL, NULL, 0, 0), ('b1a15f0c-fc8d-15ce-37ed-679c69670121', 'campaign_modified_user', 'Users', 'users', 'id', 'Campaigns', 'campaigns', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('b28a7fd9-1ad6-e5e5-4d46-679c69bb4abb', 'surveyresponses_campaigns', 'Campaigns', 'campaigns', 'id', 'SurveyResponses', 'surveyresponses', 'campaign_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('b2919311-ae2d-fb12-aab8-679c69cb825e', 'aos_quotes_aos_contracts', 'AOS_Quotes', 'aos_quotes', 'id', 'AOS_Contracts', 'aos_contracts', 'id', 'aos_quotes_os_contracts_c', 'aos_quotese81e_quotes_ida', 'aos_quotes4dc0ntracts_idb', 'many-to-many', NULL, NULL, 0, 0), ('b3a453bf-15e5-f753-221c-679c690ac6d1', 'aos_quotes_aos_invoices', 'AOS_Quotes', 'aos_quotes', 'id', 'AOS_Invoices', 'aos_invoices', 'id', 'aos_quotes_aos_invoices_c', 'aos_quotes77d9_quotes_ida', 'aos_quotes6b83nvoices_idb', 'many-to-many', NULL, NULL, 0, 0), ('b3c39197-831b-362a-900d-679c698fae13', 'prospectlists_assigned_user', 'Users', 'users', 'id', 'ProspectLists', 'prospect_lists', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('b49f511f-7519-211f-af89-679c69df4255', 'securitygroups_prospectlists', 'SecurityGroups', 'securitygroups', 'id', 'ProspectLists', 'prospect_lists', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'ProspectLists', 0, 0), ('b4ae4378-5fa9-e699-ad8f-679c69b644e8', 'aos_quotes_project', 'AOS_Quotes', 'aos_quotes', 'id', 'Project', 'project', 'id', 'aos_quotes_project_c', 'aos_quotes1112_quotes_ida', 'aos_quotes7207project_idb', 'many-to-many', NULL, NULL, 0, 0), ('b56f7d48-d6cf-2e92-497e-679c69fbfd03', 'aow_processed_aow_actions', 'AOW_Processed', 'aow_processed', 'id', 'AOW_Actions', 'aow_actions', 'id', 'aow_processed_aow_actions', 'aow_processed_id', 'aow_action_id', 'many-to-many', NULL, NULL, 0, 0), ('b5a8199f-f292-ab39-0890-679c69914b18', 'prospects_modified_user', 'Users', 'users', 'id', 'Prospects', 'prospects', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('b66ca59f-5e20-cf4b-a873-679c69546edd', 'fp_event_locations_fp_events_1', 'FP_Event_Locations', 'fp_event_locations', 'id', 'FP_events', 'fp_events', 'id', 'fp_event_locations_fp_events_1_c', 'fp_event_locations_fp_events_1fp_event_locations_ida', 'fp_event_locations_fp_events_1fp_events_idb', 'many-to-many', NULL, NULL, 0, 0), ('b68c80c4-1e59-3b70-7f7b-679c695095a4', 'prospects_created_by', 'Users', 'users', 'id', 'Prospects', 'prospects', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('b762708c-d6f9-8e87-24c5-679c69449714', 'fp_events_contacts', 'FP_events', 'fp_events', 'id', 'Contacts', 'contacts', 'id', 'fp_events_contacts_c', 'fp_events_contactsfp_events_ida', 'fp_events_contactscontacts_idb', 'many-to-many', NULL, NULL, 0, 0), ('b7b31b54-5cab-3108-968d-679c6955dcba', 'prospects_assigned_user', 'Users', 'users', 'id', 'Prospects', 'prospects', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('b844ce73-3b65-9dbe-c9f4-679c696d5ef9', 'fp_events_fp_event_locations_1', 'FP_events', 'fp_events', 'id', 'FP_Event_Locations', 'fp_event_locations', 'id', 'fp_events_fp_event_locations_1_c', 'fp_events_fp_event_locations_1fp_events_ida', 'fp_events_fp_event_locations_1fp_event_locations_idb', 'many-to-many', NULL, NULL, 0, 0), ('b883cf55-ca95-a672-e112-679c69a09c6c', 'securitygroups_prospects', 'SecurityGroups', 'securitygroups', 'id', 'Prospects', 'prospects', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'Prospects', 0, 0), ('b92935a1-b6a2-0690-cfc6-679c6941c5ba', 'fp_events_leads_1', 'FP_events', 'fp_events', 'id', 'Leads', 'leads', 'id', 'fp_events_leads_1_c', 'fp_events_leads_1fp_events_ida', 'fp_events_leads_1leads_idb', 'many-to-many', NULL, NULL, 0, 0), ('b95f1528-8165-957b-7e98-679c69b12f9c', 'prospects_email_addresses', 'Prospects', 'prospects', 'id', 'EmailAddresses', 'email_addresses', 'id', 'email_addr_bean_rel', 'bean_id', 'email_address_id', 'many-to-many', 'bean_module', 'Prospects', 0, 0), ('b9e8fb75-5aff-35b1-95b4-679c699c499d', 'fp_events_prospects_1', 'FP_events', 'fp_events', 'id', 'Prospects', 'prospects', 'id', 'fp_events_prospects_1_c', 'fp_events_prospects_1fp_events_ida', 'fp_events_prospects_1prospects_idb', 'many-to-many', NULL, NULL, 0, 0), ('bab2acb6-28b3-d1ab-a907-679c698e6210', 'jjwg_maps_jjwg_areas', 'jjwg_Maps', 'jjwg_maps', 'id', 'jjwg_Areas', 'jjwg_areas', 'id', 'jjwg_maps_jjwg_areas_c', 'jjwg_maps_5304wg_maps_ida', 'jjwg_maps_41f2g_areas_idb', 'many-to-many', NULL, NULL, 0, 0), ('bad593cb-ea5e-4f6b-c4d6-679c69102455', 'prospects_email_addresses_primary', 'Prospects', 'prospects', 'id', 'EmailAddresses', 'email_addresses', 'id', 'email_addr_bean_rel', 'bean_id', 'email_address_id', 'many-to-many', 'primary_address', '1', 0, 0), ('bbb9e43d-251f-df0a-f3b4-679c69d59392', 'jjwg_maps_jjwg_markers', 'jjwg_Maps', 'jjwg_maps', 'id', 'jjwg_Markers', 'jjwg_markers', 'id', 'jjwg_maps_jjwg_markers_c', 'jjwg_maps_b229wg_maps_ida', 'jjwg_maps_2e31markers_idb', 'many-to-many', NULL, NULL, 0, 0), ('bbf1c2f2-1a91-f8c1-709c-679c69c2646a', 'prospect_tasks', 'Prospects', 'prospects', 'id', 'Tasks', 'tasks', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Prospects', 0, 0), ('bccfd2ef-a7f3-dcb3-9ce7-679c693270b7', 'project_contacts_1', 'Project', 'project', 'id', 'Contacts', 'contacts', 'id', 'project_contacts_1_c', 'project_contacts_1project_ida', 'project_contacts_1contacts_idb', 'many-to-many', NULL, NULL, 0, 0), ('bcde9133-2bce-a659-0994-679c6940d71a', 'prospect_notes', 'Prospects', 'prospects', 'id', 'Notes', 'notes', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Prospects', 0, 0), ('bd2d03ed-6d68-dc76-7739-679c69f5b4a4', 'calls_created_by', 'Users', 'users', 'id', 'Calls', 'calls', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('bd8cdf9b-6a15-9722-8e34-679c6907680e', 'project_users_1', 'Project', 'project', 'id', 'Users', 'users', 'id', 'project_users_1_c', 'project_users_1project_ida', 'project_users_1users_idb', 'many-to-many', NULL, NULL, 0, 0), ('bdae0bfa-9f14-eee4-8101-679c69b41ea0', 'prospect_meetings', 'Prospects', 'prospects', 'id', 'Meetings', 'meetings', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Prospects', 0, 0), ('be882506-a374-1b7e-b1da-679c69c49c27', 'securitygroups_acl_roles', 'SecurityGroups', 'securitygroups', 'id', 'ACLRoles', 'acl_roles', 'id', 'securitygroups_acl_roles', 'securitygroup_id', 'role_id', 'many-to-many', NULL, NULL, 0, 0), ('be98cd90-fa8f-2a90-71df-679c69e4a709', 'prospect_calls', 'Prospects', 'prospects', 'id', 'Calls', 'calls', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Prospects', 0, 0), ('bf160f01-e1d2-2cf1-df8f-679c69987944', 'product_categories', 'AOS_Product_Categories', 'aos_product_categories', 'id', 'AOS_Products', 'aos_products', 'aos_product_category_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('c007380a-9c14-2f4a-7da2-679c69cffda3', 'prospect_emails', 'Prospects', 'prospects', 'id', 'Emails', 'emails', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Prospects', 0, 0), ('c0b011e3-9a35-69e4-f55f-679c69ecbe71', 'securitygroups_project_task', 'SecurityGroups', 'securitygroups', 'id', 'ProjectTask', 'project_task', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'ProjectTask', 0, 0), ('c0e9bce5-4e1a-b1e4-eb85-679c69b14c6b', 'prospect_campaign_log', 'Prospects', 'prospects', 'id', 'CampaignLog', 'campaign_log', 'target_id', NULL, NULL, NULL, 'one-to-many', 'target_type', 'Prospects', 0, 0), ('c1a671b5-2c26-0244-92a3-679c692fca24', 'securitygroups_prospect_lists', 'SecurityGroups', 'securitygroups', 'id', 'ProspectLists', 'prospect_lists', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'ProspectLists', 0, 0), ('c2715eef-a950-d2d9-a695-679c69650bc7', 'securitygroups_emailmarketing', 'SecurityGroups', 'securitygroups', 'id', 'EmailMarketing', 'email_marketing', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'EmailMarketing', 0, 0), ('c2e66144-e8de-ad0c-444a-679c691488ff', 'securitygroups_users', 'SecurityGroups', 'securitygroups', 'id', 'Users', 'users', 'id', 'securitygroups_users', 'securitygroup_id', 'user_id', 'many-to-many', NULL, NULL, 0, 0), ('c35d300f-32c9-2d31-0a1d-679c69f254ef', 'email_template_email_marketings', 'EmailTemplates', 'email_templates', 'id', 'EmailMarketing', 'email_marketing', 'template_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('c3d7c881-44cb-319a-7450-679c698e54d7', 'surveyquestionoptions_surveyquestionresponses', 'SurveyQuestionOptions', 'surveyquestionoptions', 'id', 'SurveyQuestionResponses', 'surveyquestionresponses', 'id', 'surveyquestionoptions_surveyquestionresponses', 'surveyq72c7options_ida', 'surveyq10d4sponses_idb', 'many-to-many', NULL, NULL, 0, 0), ('c46656c0-1203-17e9-9111-679c690ece33', 'campaign_campaigntrakers', 'Campaigns', 'campaigns', 'id', 'CampaignTrackers', 'campaign_trkrs', 'campaign_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('c548f902-b4f6-f7e9-bcbe-679c69f04962', 'schedulers_created_by_rel', 'Users', 'users', 'id', 'Schedulers', 'schedulers', 'created_by', NULL, NULL, NULL, 'one-to-one', NULL, NULL, 0, 0), ('c6095758-c761-29f6-847d-679c699fe7d9', 'schedulers_modified_user_id_rel', 'Users', 'users', 'id', 'Schedulers', 'schedulers', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('c7070a85-40ff-c0fc-cd3d-679c698e2b4b', 'schedulers_jobs_rel', 'Schedulers', 'schedulers', 'id', 'SchedulersJobs', 'job_queue', 'scheduler_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('c829654d-ad85-d664-249f-679c690b07ac', 'schedulersjobs_assigned_user', 'Users', 'users', 'id', 'SchedulersJobs', 'job_queue', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('c9139836-fbf8-dcaa-8b22-679c691315fe', 'contacts_modified_user', 'Users', 'users', 'id', 'Contacts', 'contacts', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('c9eadb93-38e4-7268-d285-679c694781c0', 'contacts_created_by', 'Users', 'users', 'id', 'Contacts', 'contacts', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('caf2cd5f-3826-1537-386f-679c693bab72', 'contacts_assigned_user', 'Users', 'users', 'id', 'Contacts', 'contacts', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('cbed0a54-1d47-b81d-f527-679c69251062', 'securitygroups_contacts', 'SecurityGroups', 'securitygroups', 'id', 'Contacts', 'contacts', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'Contacts', 0, 0), ('cc4600de-e977-146d-56dc-679c69a50acc', 'calls_assigned_user', 'Users', 'users', 'id', 'Calls', 'calls', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('ccf62864-7b4c-f60b-7adb-679c6973f2b0', 'contacts_email_addresses', 'Contacts', 'contacts', 'id', 'EmailAddresses', 'email_addresses', 'id', 'email_addr_bean_rel', 'bean_id', 'email_address_id', 'many-to-many', 'bean_module', 'Contacts', 0, 0), ('cdd62cd3-4048-7f08-539c-679c69387cdd', 'contacts_email_addresses_primary', 'Contacts', 'contacts', 'id', 'EmailAddresses', 'email_addresses', 'id', 'email_addr_bean_rel', 'bean_id', 'email_address_id', 'many-to-many', 'primary_address', '1', 0, 0), ('cecf9e66-6929-3301-97bd-679c69bac965', 'contact_direct_reports', 'Contacts', 'contacts', 'id', 'Contacts', 'contacts', 'reports_to_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('cfbf72cf-79ea-fec8-3c12-679c6979ee50', 'contact_leads', 'Contacts', 'contacts', 'id', 'Leads', 'leads', 'contact_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('d0cbb216-71ea-9cf9-a983-679c69130cf9', 'contact_notes', 'Contacts', 'contacts', 'id', 'Notes', 'notes', 'contact_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('d19bc710-46a2-f7b5-be5f-679c6911b40e', 'contact_tasks', 'Contacts', 'contacts', 'id', 'Tasks', 'tasks', 'contact_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('d2b7f8b2-378e-faaa-4932-679c69e85166', 'contact_tasks_parent', 'Contacts', 'contacts', 'id', 'Tasks', 'tasks', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Contacts', 0, 0), ('d391e596-30a1-1b85-27a8-679c6968ab0b', 'contact_notes_parent', 'Contacts', 'contacts', 'id', 'Notes', 'notes', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Contacts', 0, 0), ('d4634e00-429b-43aa-a307-679c69825993', 'contact_campaign_log', 'Contacts', 'contacts', 'id', 'CampaignLog', 'campaign_log', 'target_id', NULL, NULL, NULL, 'one-to-many', 'target_type', 'Contacts', 0, 0), ('d51e6ec4-35af-a7f8-f0fc-679c694598af', 'contact_aos_quotes', 'Contacts', 'contacts', 'id', 'AOS_Quotes', 'aos_quotes', 'billing_contact_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('d5de4c3a-2653-7dec-816a-679c69e30bbe', 'contact_aos_invoices', 'Contacts', 'contacts', 'id', 'AOS_Invoices', 'aos_invoices', 'billing_contact_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('d6d02c19-64d9-6c7e-84c0-679c69bfe0b3', 'contact_aos_contracts', 'Contacts', 'contacts', 'id', 'AOS_Contracts', 'aos_contracts', 'contact_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('d7ae57d8-6a55-bd34-dc14-679c69dc866e', 'contacts_aop_case_updates', 'Contacts', 'contacts', 'id', 'AOP_Case_Updates', 'aop_case_updates', 'contact_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('d9bb0761-5f08-84ac-ff2b-679c69d191fb', 'accounts_modified_user', 'Users', 'users', 'id', 'Accounts', 'accounts', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('da832e6a-18e8-d0a3-b495-679c6978f434', 'accounts_created_by', 'Users', 'users', 'id', 'Accounts', 'accounts', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('db52bbc6-886b-ba65-ba34-679c69355d74', 'accounts_assigned_user', 'Users', 'users', 'id', 'Accounts', 'accounts', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('db74077c-adcf-89c6-8662-679c699dfeff', 'aos_products_quotes_modified_user', 'Users', 'users', 'id', 'AOS_Products_Quotes', 'aos_products_quotes', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('dc512275-9e2e-74fd-4535-679c693d0909', 'securitygroups_accounts', 'SecurityGroups', 'securitygroups', 'id', 'Accounts', 'accounts', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'Accounts', 0, 0), ('dd2177b4-7b88-ca87-2181-679c69481f42', 'accounts_email_addresses', 'Accounts', 'accounts', 'id', 'EmailAddresses', 'email_addresses', 'id', 'email_addr_bean_rel', 'bean_id', 'email_address_id', 'many-to-many', 'bean_module', 'Accounts', 0, 0), ('ddec0208-6699-cd8f-fc03-679c694c3282', 'accounts_email_addresses_primary', 'Accounts', 'accounts', 'id', 'EmailAddresses', 'email_addresses', 'id', 'email_addr_bean_rel', 'bean_id', 'email_address_id', 'many-to-many', 'primary_address', '1', 0, 0), ('deeafd25-e6e1-e8c0-a49a-679c6999c69f', 'member_accounts', 'Accounts', 'accounts', 'id', 'Accounts', 'accounts', 'parent_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('dfc47c47-2c7d-e4dc-f9f0-679c6903ee8a', 'account_cases', 'Accounts', 'accounts', 'id', 'Cases', 'cases', 'account_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('e00c0797-2129-aee4-ffaf-679c6926a983', 'securitygroups_calls', 'SecurityGroups', 'securitygroups', 'id', 'Calls', 'calls', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'Calls', 0, 0), ('e08f3c44-b534-fba4-0c6d-679c692d0eb8', 'account_tasks', 'Accounts', 'accounts', 'id', 'Tasks', 'tasks', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Accounts', 0, 0), ('e16cbfc5-94f8-4f35-2084-679c697937f7', 'account_notes', 'Accounts', 'accounts', 'id', 'Notes', 'notes', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Accounts', 0, 0), ('e22a8853-91e5-f65c-97ed-679c691a1a18', 'account_meetings', 'Accounts', 'accounts', 'id', 'Meetings', 'meetings', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Accounts', 0, 0), ('e2e86f97-5f86-3715-f732-679c6911b566', 'account_calls', 'Accounts', 'accounts', 'id', 'Calls', 'calls', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Accounts', 0, 0), ('e3d07d86-15f6-fb44-a2a0-679c692eb6d7', 'account_emails', 'Accounts', 'accounts', 'id', 'Emails', 'emails', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Accounts', 0, 0), ('e4adee4f-5fbc-d084-e761-679c6907da46', 'account_leads', 'Accounts', 'accounts', 'id', 'Leads', 'leads', 'account_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('e6429816-207a-3f70-d675-679c69c2ab90', 'account_campaign_log', 'Accounts', 'accounts', 'id', 'CampaignLog', 'campaign_log', 'target_id', NULL, NULL, NULL, 'one-to-many', 'target_type', 'Accounts', 0, 0), ('e7411310-dabc-6c0d-094c-679c69593d1f', 'account_aos_quotes', 'Accounts', 'accounts', 'id', 'AOS_Quotes', 'aos_quotes', 'billing_account_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('e827eff5-b38d-51a8-3c4f-679c6998d1d4', 'account_aos_invoices', 'Accounts', 'accounts', 'id', 'AOS_Invoices', 'aos_invoices', 'billing_account_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('e9236727-01e5-f442-8b9b-679c69f5acdd', 'account_aos_contracts', 'Accounts', 'accounts', 'id', 'AOS_Contracts', 'aos_contracts', 'contract_account_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('eafbea2b-9bb6-7b50-b5ce-679c69232754', 'opportunities_modified_user', 'Users', 'users', 'id', 'Opportunities', 'opportunities', 'modified_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('ebe77a38-485a-18b8-d5a2-679c6913cd26', 'opportunities_created_by', 'Users', 'users', 'id', 'Opportunities', 'opportunities', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('ec83036f-5424-7bb0-5c3f-679c69aff6b7', 'aos_products_quotes_created_by', 'Users', 'users', 'id', 'AOS_Products_Quotes', 'aos_products_quotes', 'created_by', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('ecb91884-936d-e758-c4a2-679c69919d90', 'opportunities_assigned_user', 'Users', 'users', 'id', 'Opportunities', 'opportunities', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('eda8d7a9-dee5-dc51-a32c-679c69194566', 'securitygroups_opportunities', 'SecurityGroups', 'securitygroups', 'id', 'Opportunities', 'opportunities', 'id', 'securitygroups_records', 'securitygroup_id', 'record_id', 'many-to-many', 'module', 'Opportunities', 0, 0), ('ee6b3b87-b5b8-08d8-34bf-679c693fb97b', 'opportunity_calls', 'Opportunities', 'opportunities', 'id', 'Calls', 'calls', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Opportunities', 0, 0), ('ef2b0d41-e24a-04ec-c8fa-679c6951550c', 'calls_notes', 'Calls', 'calls', 'id', 'Notes', 'notes', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Calls', 0, 0), ('ef730d35-7095-87e5-385d-679c69b5c61a', 'opportunity_meetings', 'Opportunities', 'opportunities', 'id', 'Meetings', 'meetings', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Opportunities', 0, 0), ('f0510bba-c499-ed89-7a71-679c694cf785', 'opportunity_tasks', 'Opportunities', 'opportunities', 'id', 'Tasks', 'tasks', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Opportunities', 0, 0), ('f16800ff-d1d1-dd87-b712-679c695421b0', 'opportunity_notes', 'Opportunities', 'opportunities', 'id', 'Notes', 'notes', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Opportunities', 0, 0), ('f252992e-b578-db6a-9400-679c693f0ca3', 'opportunity_emails', 'Opportunities', 'opportunities', 'id', 'Emails', 'emails', 'parent_id', NULL, NULL, NULL, 'one-to-many', 'parent_type', 'Opportunities', 0, 0), ('f3523551-c3e5-e661-c798-679c6933d8bb', 'opportunity_leads', 'Opportunities', 'opportunities', 'id', 'Leads', 'leads', 'opportunity_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('fcb1032f-868e-2923-2708-679c695f5945', 'calls_reschedule', 'Calls', 'calls', 'id', 'Calls_Reschedule', 'calls_reschedule', 'call_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0), ('fd920a3d-f3f2-e082-498e-679c6933ba43', 'aos_products_quotes_assigned_user', 'Users', 'users', 'id', 'AOS_Products_Quotes', 'aos_products_quotes', 'assigned_user_id', NULL, NULL, NULL, 'one-to-many', NULL, NULL, 0, 0); -- -------------------------------------------------------- -- -- Table structure for table `releases` -- CREATE TABLE `releases` ( `id` char(36) NOT NULL, `deleted` tinyint(1) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `name` varchar(50) DEFAULT NULL, `list_order` int(4) DEFAULT NULL, `status` varchar(100) DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_releases` (`name`,`deleted`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `reminders` -- CREATE TABLE `reminders` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `popup` tinyint(1) DEFAULT NULL, `email` tinyint(1) DEFAULT NULL, `email_sent` tinyint(1) DEFAULT NULL, `timer_popup` varchar(32) DEFAULT NULL, `timer_email` varchar(32) DEFAULT NULL, `related_event_module` varchar(32) DEFAULT NULL, `related_event_module_id` char(36) NOT NULL, `date_willexecute` int(60) DEFAULT '-1', `popup_viewed` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_reminder_name` (`name`), KEY `idx_reminder_deleted` (`deleted`), KEY `idx_reminder_related_event_module` (`related_event_module`), KEY `idx_reminder_related_event_module_id` (`related_event_module_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `reminders_invitees` -- CREATE TABLE `reminders_invitees` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `reminder_id` char(36) NOT NULL, `related_invitee_module` varchar(32) DEFAULT NULL, `related_invitee_module_id` char(36) NOT NULL, PRIMARY KEY (`id`), KEY `idx_reminder_invitee_name` (`name`), KEY `idx_reminder_invitee_assigned_user_id` (`assigned_user_id`), KEY `idx_reminder_invitee_reminder_id` (`reminder_id`), KEY `idx_reminder_invitee_related_invitee_module` (`related_invitee_module`), KEY `idx_reminder_invitee_related_invitee_module_id` (`related_invitee_module_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `roles` -- CREATE TABLE `roles` ( `id` char(36) NOT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `name` varchar(150) DEFAULT NULL, `description` text, `modules` text, `deleted` tinyint(1) DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_role_id_del` (`id`,`deleted`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `roles_modules` -- CREATE TABLE `roles_modules` ( `id` varchar(36) NOT NULL, `role_id` varchar(36) DEFAULT NULL, `module_id` varchar(36) DEFAULT NULL, `allow` tinyint(1) DEFAULT '0', `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_role_id` (`role_id`), KEY `idx_module_id` (`module_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `roles_users` -- CREATE TABLE `roles_users` ( `id` varchar(36) NOT NULL, `role_id` varchar(36) DEFAULT NULL, `user_id` varchar(36) DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_ru_role_id` (`role_id`), KEY `idx_ru_user_id` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `saved_search` -- CREATE TABLE `saved_search` ( `id` char(36) NOT NULL, `name` varchar(150) DEFAULT NULL, `search_module` varchar(150) DEFAULT NULL, `quick_filter` tinyint(1) DEFAULT NULL, `deleted` tinyint(1) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `assigned_user_id` char(36) DEFAULT NULL, `contents` text, `description` text, PRIMARY KEY (`id`), KEY `idx_desc` (`name`,`deleted`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `schedulers` -- CREATE TABLE `schedulers` ( `id` varchar(36) NOT NULL, `deleted` tinyint(1) DEFAULT '0', `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `name` varchar(255) DEFAULT NULL, `job` varchar(255) DEFAULT NULL, `date_time_start` datetime DEFAULT NULL, `date_time_end` datetime DEFAULT NULL, `job_interval` varchar(100) DEFAULT NULL, `time_from` time DEFAULT NULL, `time_to` time DEFAULT NULL, `last_run` datetime DEFAULT NULL, `status` varchar(100) DEFAULT NULL, `catch_up` tinyint(1) DEFAULT '1', PRIMARY KEY (`id`), KEY `idx_schedule` (`date_time_start`,`deleted`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `schedulers` -- INSERT INTO `schedulers` VALUES ('10e39f3e-f0ac-c465-a115-679c680c029a', 0, '[[regtime]]', '[[regtime]]', '1', '1', 'Run Nightly Mass Email Campaigns', 'function::runMassEmailCampaign', '2015-01-01 18:15:01', NULL, '0::2-6::*::*::*', NULL, NULL, NULL, 'Active', 1), ('1420510f-6b09-c382-a055-679c68b2051a', 0, '[[regtime]]', '[[regtime]]', '1', '1', 'Prune Database on 1st of Month', 'function::pruneDatabase', '2015-01-01 09:15:01', NULL, '0::4::1::*::*', NULL, NULL, NULL, 'Inactive', 0), ('209706f6-e260-88ad-bc2c-679c689a9f26', 0, '[[regtime]]', '[[regtime]]', '1', '1', 'Run Email Reminder Notifications', 'function::sendEmailReminders', '2015-01-01 08:00:01', NULL, '*::*::*::*::*', NULL, NULL, NULL, 'Active', 0), ('29e1ca6a-0b55-e70a-16aa-679c6844fdbd', 0, '[[regtime]]', '[[regtime]]', '1', '1', 'Clean Jobs Queue', 'function::cleanJobQueue', '2015-01-01 19:15:01', NULL, '0::5::*::*::*', NULL, NULL, NULL, 'Active', 0), ('2d1802bd-a842-01a7-3da3-679c683990e3', 0, '[[regtime]]', '[[regtime]]', '1', '1', 'Removal of documents from filesystem', 'function::removeDocumentsFromFS', '2015-01-01 19:15:01', NULL, '0::3::1::*::*', NULL, NULL, NULL, 'Active', 0), ('30f97375-3dbe-8e72-1975-679c68869031', 0, '[[regtime]]', '[[regtime]]', '1', '1', 'Prune SuiteCRM Feed Tables', 'function::trimSugarFeeds', '2015-01-01 14:15:01', NULL, '0::2::1::*::*', NULL, NULL, NULL, 'Active', 1), ('34489e59-19c8-88d6-b007-679c689455af', 0, '[[regtime]]', '[[regtime]]', '1', '1', 'Google Calendar Sync', 'function::syncGoogleCalendar', '2015-01-01 11:15:01', NULL, '*/15::*::*::*::*', NULL, NULL, NULL, 'Active', 0), ('379f86bf-158d-363a-4945-679c6897b3f4', 0, '[[regtime]]', '[[regtime]]', '1', '1', 'Perform Elasticsearch Index', 'function::runElasticSearchIndexerScheduler', '2015-01-01 08:15:01', NULL, '30::4::*::*::*', NULL, NULL, NULL, 'Active', 0), ('4d9f044f-81c0-4c8c-76b4-679c68d923da', 0, '[[regtime]]', '[[regtime]]', '1', '1', 'Prune Tracker Tables', 'function::trimTracker', '2015-01-01 15:45:01', NULL, '0::2::1::*::*', NULL, NULL, NULL, 'Active', 1), ('9e4c0cdf-8615-0c86-82ec-679c686cf79f', 0, '[[regtime]]', '[[regtime]]', '1', '1', 'Check Inbound Mailboxes', 'function::pollMonitoredInboxesAOP', '2015-01-01 16:30:01', NULL, '*::*::*::*::*', NULL, NULL, NULL, 'Active', 0), ('a4500204-a172-24aa-f3f9-679c68561c1f', 0, '[[regtime]]', '[[regtime]]', '1', '1', 'Run Report Generation Scheduled Tasks', 'function::aorRunScheduledReports', '2015-01-01 10:30:01', NULL, '*::*::*::*::*', NULL, NULL, NULL, 'Active', 1), ('d32b082f-7544-891b-51f2-679c68275e8f', 0, '[[regtime]]', '[[regtime]]', '1', '1', 'Run Nightly Process Bounced Campaign Emails', 'function::pollMonitoredInboxesForBouncedCampaignEmails', '2015-01-01 11:15:01', NULL, '0::2-6::*::*::*', NULL, NULL, NULL, 'Active', 1), ('f19ad5cb-6279-2008-d0e2-679c686f6996', 0, '[[regtime]]', '[[regtime]]', '1', '1', 'Process Workflow Tasks', 'function::processAOW_Workflow', '2015-01-01 15:45:01', NULL, '*::*::*::*::*', NULL, NULL, NULL, 'Active', 1); -- -------------------------------------------------------- -- -- Table structure for table `securitygroups` -- CREATE TABLE `securitygroups` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `noninheritable` tinyint(1) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `securitygroups_acl_roles` -- CREATE TABLE `securitygroups_acl_roles` ( `id` char(36) NOT NULL, `securitygroup_id` char(36) DEFAULT NULL, `role_id` char(36) DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `securitygroups_audit` -- CREATE TABLE `securitygroups_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_securitygroups_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `securitygroups_default` -- CREATE TABLE `securitygroups_default` ( `id` char(36) NOT NULL, `securitygroup_id` char(36) DEFAULT NULL, `module` varchar(50) DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `securitygroups_records` -- CREATE TABLE `securitygroups_records` ( `id` char(36) NOT NULL, `securitygroup_id` char(36) DEFAULT NULL, `record_id` char(36) DEFAULT NULL, `module` varchar(100) DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_securitygroups_records_mod` (`module`,`deleted`,`record_id`,`securitygroup_id`), KEY `idx_securitygroups_records_del` (`deleted`,`record_id`,`module`,`securitygroup_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `securitygroups_users` -- CREATE TABLE `securitygroups_users` ( `id` varchar(36) NOT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `securitygroup_id` varchar(36) DEFAULT NULL, `user_id` varchar(36) DEFAULT NULL, `primary_group` tinyint(1) DEFAULT NULL, `noninheritable` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `securitygroups_users_idxa` (`securitygroup_id`), KEY `securitygroups_users_idxb` (`user_id`), KEY `securitygroups_users_idxc` (`user_id`,`deleted`,`securitygroup_id`,`id`), KEY `securitygroups_users_idxd` (`user_id`,`deleted`,`securitygroup_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `sugarfeed` -- CREATE TABLE `sugarfeed` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `related_module` varchar(100) DEFAULT NULL, `related_id` char(36) DEFAULT NULL, `link_url` varchar(255) DEFAULT NULL, `link_type` varchar(30) DEFAULT NULL, PRIMARY KEY (`id`), KEY `sgrfeed_date` (`date_entered`,`deleted`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `surveyquestionoptions` -- CREATE TABLE `surveyquestionoptions` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `sort_order` int(255) DEFAULT NULL, `survey_question_id` char(36) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `surveyquestionoptions_audit` -- CREATE TABLE `surveyquestionoptions_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_surveyquestionoptions_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `surveyquestionoptions_surveyquestionresponses` -- CREATE TABLE `surveyquestionoptions_surveyquestionresponses` ( `id` varchar(36) NOT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `surveyq72c7options_ida` varchar(36) DEFAULT NULL, `surveyq10d4sponses_idb` varchar(36) DEFAULT NULL, PRIMARY KEY (`id`), KEY `surveyquestionoptions_surveyquestionresponses_alt` (`surveyq72c7options_ida`,`surveyq10d4sponses_idb`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `surveyquestionresponses` -- CREATE TABLE `surveyquestionresponses` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `answer` text, `answer_bool` tinyint(1) DEFAULT NULL, `answer_datetime` datetime DEFAULT NULL, `surveyquestion_id` char(36) DEFAULT NULL, `surveyresponse_id` char(36) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `surveyquestionresponses_audit` -- CREATE TABLE `surveyquestionresponses_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_surveyquestionresponses_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `surveyquestions` -- CREATE TABLE `surveyquestions` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `sort_order` int(255) DEFAULT NULL, `type` varchar(100) DEFAULT NULL, `happiness_question` tinyint(1) DEFAULT NULL, `survey_id` char(36) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `surveyquestions_audit` -- CREATE TABLE `surveyquestions_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_surveyquestions_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `surveyresponses` -- CREATE TABLE `surveyresponses` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `happiness` int(11) DEFAULT NULL, `email_response_sent` tinyint(1) DEFAULT NULL, `account_id` char(36) DEFAULT NULL, `campaign_id` char(36) DEFAULT NULL, `contact_id` char(36) DEFAULT NULL, `survey_id` char(36) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `surveyresponses_audit` -- CREATE TABLE `surveyresponses_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_surveyresponses_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `surveys` -- CREATE TABLE `surveys` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `status` varchar(100) DEFAULT 'LBL_DRAFT', `submit_text` varchar(255) DEFAULT 'Submit', `satisfied_text` varchar(255) DEFAULT 'Satisfied', `neither_text` varchar(255) DEFAULT 'Neither Satisfied nor Dissatisfied', `dissatisfied_text` varchar(255) DEFAULT 'Dissatisfied', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `surveys_audit` -- CREATE TABLE `surveys_audit` ( `id` char(36) NOT NULL, `parent_id` char(36) NOT NULL, `date_created` datetime DEFAULT NULL, `created_by` varchar(36) DEFAULT NULL, `field_name` varchar(100) DEFAULT NULL, `data_type` varchar(100) DEFAULT NULL, `before_value_string` varchar(255) DEFAULT NULL, `after_value_string` varchar(255) DEFAULT NULL, `before_value_text` text, `after_value_text` text, PRIMARY KEY (`id`), KEY `idx_surveys_parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `tasks` -- CREATE TABLE `tasks` ( `id` char(36) NOT NULL, `name` varchar(50) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `assigned_user_id` char(36) DEFAULT NULL, `status` varchar(100) DEFAULT 'Not Started', `date_due_flag` tinyint(1) DEFAULT '0', `date_due` datetime DEFAULT NULL, `date_start_flag` tinyint(1) DEFAULT '0', `date_start` datetime DEFAULT NULL, `parent_type` varchar(255) DEFAULT NULL, `parent_id` char(36) DEFAULT NULL, `contact_id` char(36) DEFAULT NULL, `priority` varchar(100) DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_tsk_name` (`name`), KEY `idx_task_con_del` (`contact_id`,`deleted`), KEY `idx_task_par_del` (`parent_id`,`parent_type`,`deleted`), KEY `idx_task_assigned` (`assigned_user_id`), KEY `idx_task_status` (`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `templatesectionline` -- CREATE TABLE `templatesectionline` ( `id` char(36) NOT NULL, `name` varchar(255) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `description` text, `deleted` tinyint(1) DEFAULT '0', `thumbnail` varchar(255) DEFAULT NULL, `grp` varchar(255) DEFAULT NULL, `ord` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `tracker` -- CREATE TABLE `tracker` ( `id` int(11) NOT NULL AUTO_INCREMENT, `monitor_id` char(36) NOT NULL, `user_id` varchar(36) DEFAULT NULL, `module_name` varchar(255) DEFAULT NULL, `item_id` varchar(36) DEFAULT NULL, `item_summary` varchar(255) DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `action` varchar(255) DEFAULT NULL, `session_id` varchar(36) DEFAULT NULL, `visible` tinyint(1) DEFAULT '0', `deleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_tracker_iid` (`item_id`), KEY `idx_tracker_userid_vis_id` (`user_id`,`visible`,`id`), KEY `idx_tracker_userid_itemid_vis` (`user_id`,`item_id`,`visible`), KEY `idx_tracker_monitor_id` (`monitor_id`), KEY `idx_tracker_date_modified` (`date_modified`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `upgrade_history` -- CREATE TABLE `upgrade_history` ( `id` char(36) NOT NULL, `filename` varchar(255) DEFAULT NULL, `md5sum` varchar(32) DEFAULT NULL, `type` varchar(30) DEFAULT NULL, `status` varchar(50) DEFAULT NULL, `version` varchar(64) DEFAULT NULL, `name` varchar(255) DEFAULT NULL, `description` text, `id_name` varchar(255) DEFAULT NULL, `manifest` longtext, `date_entered` datetime DEFAULT NULL, `enabled` tinyint(1) DEFAULT '1', PRIMARY KEY (`id`), UNIQUE KEY `upgrade_history_md5_uk` (`md5sum`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` char(36) NOT NULL, `user_name` varchar(60) DEFAULT NULL, `user_hash` varchar(255) DEFAULT NULL, `system_generated_password` tinyint(1) DEFAULT NULL, `pwd_last_changed` datetime DEFAULT NULL, `authenticate_id` varchar(100) DEFAULT NULL, `sugar_login` tinyint(1) DEFAULT '1', `first_name` varchar(255) DEFAULT NULL, `last_name` varchar(255) DEFAULT NULL, `is_admin` tinyint(1) DEFAULT '0', `external_auth_only` tinyint(1) DEFAULT '0', `receive_notifications` tinyint(1) DEFAULT '1', `description` text, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `modified_user_id` char(36) DEFAULT NULL, `created_by` char(36) DEFAULT NULL, `title` varchar(50) DEFAULT NULL, `photo` varchar(255) DEFAULT NULL, `department` varchar(50) DEFAULT NULL, `phone_home` varchar(50) DEFAULT NULL, `phone_mobile` varchar(50) DEFAULT NULL, `phone_work` varchar(50) DEFAULT NULL, `phone_other` varchar(50) DEFAULT NULL, `phone_fax` varchar(50) DEFAULT NULL, `status` varchar(100) DEFAULT NULL, `address_street` varchar(150) DEFAULT NULL, `address_city` varchar(100) DEFAULT NULL, `address_state` varchar(100) DEFAULT NULL, `address_country` varchar(100) DEFAULT NULL, `address_postalcode` varchar(20) DEFAULT NULL, `deleted` tinyint(1) DEFAULT NULL, `portal_only` tinyint(1) DEFAULT '0', `show_on_employees` tinyint(1) DEFAULT '1', `employee_status` varchar(100) DEFAULT NULL, `messenger_id` varchar(100) DEFAULT NULL, `messenger_type` varchar(100) DEFAULT NULL, `reports_to_id` char(36) DEFAULT NULL, `is_group` tinyint(1) DEFAULT NULL, `factor_auth` tinyint(1) DEFAULT NULL, `factor_auth_interface` varchar(255) DEFAULT NULL, `totp_secret` varchar(255) DEFAULT NULL, `is_totp_enabled` tinyint(1) DEFAULT NULL, `backup_codes` text, PRIMARY KEY (`id`), KEY `idx_user_name` (`user_name`,`is_group`,`status`,`last_name`(30),`first_name`(30),`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `users` -- INSERT INTO `users` VALUES ('1', '[[admin_username]]', '[[admin_pass]]', 0, NULL, NULL, 1, '[[admin_fname]]', '[[admin_lname]]', 1, 0, 1, NULL, '[[regtime]]', '[[regtime]]', '1', '1', 'Administrator', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Active', NULL, NULL, NULL, NULL, NULL, 0, 0, 1, 'Active', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `users_feeds` -- CREATE TABLE `users_feeds` ( `user_id` varchar(36) DEFAULT NULL, `feed_id` varchar(36) DEFAULT NULL, `rank` int(11) DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', KEY `idx_ud_user_id` (`user_id`,`feed_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `users_last_import` -- CREATE TABLE `users_last_import` ( `id` char(36) NOT NULL, `assigned_user_id` char(36) DEFAULT NULL, `import_module` varchar(36) DEFAULT NULL, `bean_type` varchar(36) DEFAULT NULL, `bean_id` char(36) DEFAULT NULL, `deleted` tinyint(1) DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_user_id` (`assigned_user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `users_password_link` -- CREATE TABLE `users_password_link` ( `id` char(36) NOT NULL, `keyhash` varchar(255) DEFAULT NULL, `user_id` varchar(36) DEFAULT NULL, `username` varchar(36) DEFAULT NULL, `date_generated` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_username` (`username`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `users_signatures` -- CREATE TABLE `users_signatures` ( `id` char(36) NOT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `deleted` tinyint(1) DEFAULT NULL, `user_id` varchar(36) DEFAULT NULL, `name` varchar(255) DEFAULT NULL, `signature` text, `signature_html` text, PRIMARY KEY (`id`), KEY `idx_usersig_uid` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `user_preferences` -- CREATE TABLE `user_preferences` ( `id` char(36) NOT NULL, `category` varchar(50) DEFAULT NULL, `deleted` tinyint(1) DEFAULT '0', `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `assigned_user_id` char(36) DEFAULT NULL, `contents` longtext, PRIMARY KEY (`id`), KEY `idx_userprefnamecat` (`assigned_user_id`,`category`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `user_preferences` -- INSERT INTO `user_preferences` VALUES ('e4d9e6a8-ca31-f5cc-8a4a-679c681686e7', 'global', 0, '[[regtime]]', '[[regtime]]', '1', 'YToxOTp7czoyMDoiY2FsZW5kYXJfcHVibGlzaF9rZXkiO3M6MzY6ImQ0MWMxMDYxLTUwYTktYzk2MS0wNjEyLTY3OWM2ODVlYjIzNyI7czoxMjoibWFpbG1lcmdlX29uIjtzOjM6Im9mZiI7czoxNjoic3dhcF9sYXN0X3ZpZXdlZCI7czowOiIiO3M6MTQ6InN3YXBfc2hvcnRjdXRzIjtzOjA6IiI7czoxOToibmF2aWdhdGlvbl9wYXJhZGlnbSI7czoxOiJtIjtzOjIwOiJzb3J0X21vZHVsZXNfYnlfbmFtZSI7czowOiIiO3M6MTM6InN1YnBhbmVsX3RhYnMiO3M6MDoiIjtzOjI1OiJjb3VudF9jb2xsYXBzZWRfc3VicGFuZWxzIjtzOjA6IiI7czoxNDoibW9kdWxlX2Zhdmljb24iO3M6MDoiIjtzOjk6ImhpZGVfdGFicyI7YTowOnt9czoxMToicmVtb3ZlX3RhYnMiO2E6MDp7fXM6Nzoibm9fb3BwcyI7czozOiJvZmYiO3M6ODoidGltZXpvbmUiO3M6MzoiVVRDIjtzOjI6InV0IjtzOjE6IjEiO3M6ODoibGFuZ3VhZ2UiO3M6NToiZW5fdXMiO3M6MTQ6InVzZV9yZWFsX25hbWVzIjtzOjM6Im9mZiI7czoxNzoibWFpbF9zbXRwYXV0aF9yZXEiO3M6MDoiIjtzOjEyOiJtYWlsX3NtdHBzc2wiO2k6MDtzOjE3OiJlbWFpbF9zaG93X2NvdW50cyI7aTowO30='), ('e7c8099a-dae1-6317-54b0-679c681f61fc', 'GoogleSync', 0, '[[regtime]]', '[[regtime]]', '1', 'YToxOntzOjg6InN5bmNHQ2FsIjtpOjA7fQ=='); -- -------------------------------------------------------- -- -- Table structure for table `vcals` -- CREATE TABLE `vcals` ( `id` char(36) NOT NULL, `deleted` tinyint(1) DEFAULT NULL, `date_entered` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `user_id` char(36) NOT NULL, `type` varchar(100) DEFAULT NULL, `source` varchar(100) DEFAULT NULL, `content` text, PRIMARY KEY (`id`), KEY `idx_vcal` (`type`,`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
Close