/*M!999999\- enable the sandbox mode */
-- MariaDB dump 10.19 Distrib 10.11.15-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: mautic
-- ------------------------------------------------------
-- Server version 10.11.15-MariaDB-ubu2204
/*!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 utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `asset_downloads`
--
DROP TABLE IF EXISTS `asset_downloads`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `asset_downloads` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`asset_id` int(10) unsigned DEFAULT NULL,
`ip_id` int(10) unsigned DEFAULT NULL,
`lead_id` bigint(20) unsigned DEFAULT NULL,
`email_id` int(10) unsigned DEFAULT NULL,
`date_download` datetime NOT NULL,
`code` int(11) NOT NULL,
`referer` longtext DEFAULT NULL,
`tracking_id` varchar(191) NOT NULL,
`source` varchar(191) DEFAULT NULL,
`source_id` int(11) DEFAULT NULL,
`utm_campaign` varchar(191) DEFAULT NULL,
`utm_content` varchar(191) DEFAULT NULL,
`utm_medium` varchar(191) DEFAULT NULL,
`utm_source` varchar(191) DEFAULT NULL,
`utm_term` varchar(191) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `IDX_A6494C8F5DA1941` (`asset_id`),
KEY `IDX_A6494C8FA03F5E9F` (`ip_id`),
KEY `IDX_A6494C8F55458D` (`lead_id`),
KEY `IDX_A6494C8FA832C1C9` (`email_id`),
KEY `download_tracking_search` (`tracking_id`),
KEY `download_source_search` (`source`,`source_id`),
KEY `asset_date_download` (`date_download`),
CONSTRAINT `FK_A6494C8F55458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_A6494C8F5DA1941` FOREIGN KEY (`asset_id`) REFERENCES `assets` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_A6494C8FA03F5E9F` FOREIGN KEY (`ip_id`) REFERENCES `ip_addresses` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_A6494C8FA832C1C9` FOREIGN KEY (`email_id`) REFERENCES `emails` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `asset_downloads`
--
LOCK TABLES `asset_downloads` WRITE;
/*!40000 ALTER TABLE `asset_downloads` DISABLE KEYS */;
/*!40000 ALTER TABLE `asset_downloads` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `asset_projects_xref`
--
DROP TABLE IF EXISTS `asset_projects_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `asset_projects_xref` (
`asset_id` int(10) unsigned NOT NULL,
`project_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`asset_id`,`project_id`),
KEY `IDX_998AD577166D1F9C` (`project_id`),
CONSTRAINT `FK_998AD577166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_998AD5775DA1941` FOREIGN KEY (`asset_id`) REFERENCES `assets` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `asset_projects_xref`
--
LOCK TABLES `asset_projects_xref` WRITE;
/*!40000 ALTER TABLE `asset_projects_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `asset_projects_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `assets`
--
DROP TABLE IF EXISTS `assets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `assets` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`title` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`alias` varchar(191) NOT NULL,
`storage_location` varchar(191) DEFAULT NULL,
`path` varchar(191) DEFAULT NULL,
`remote_path` longtext DEFAULT NULL,
`original_file_name` longtext DEFAULT NULL,
`lang` varchar(191) NOT NULL,
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`download_count` int(11) NOT NULL,
`unique_download_count` int(11) NOT NULL,
`revision` int(11) NOT NULL,
`extension` varchar(191) DEFAULT NULL,
`mime` varchar(191) DEFAULT NULL,
`size` int(11) DEFAULT NULL,
`disallow` tinyint(1) DEFAULT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `IDX_79D17D8E12469DE2` (`category_id`),
KEY `asset_alias_search` (`alias`),
CONSTRAINT `FK_79D17D8E12469DE2` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `assets`
--
LOCK TABLES `assets` WRITE;
/*!40000 ALTER TABLE `assets` DISABLE KEYS */;
/*!40000 ALTER TABLE `assets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `audit_log`
--
DROP TABLE IF EXISTS `audit_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `audit_log` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`user_name` varchar(191) NOT NULL,
`bundle` varchar(50) NOT NULL,
`object` varchar(50) NOT NULL,
`object_id` bigint(20) unsigned NOT NULL,
`action` varchar(50) NOT NULL,
`details` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`date_added` datetime NOT NULL,
`ip_address` varchar(45) NOT NULL,
PRIMARY KEY (`id`),
KEY `object_search` (`object`,`object_id`),
KEY `timeline_search` (`bundle`,`object`,`action`,`object_id`),
KEY `date_added_index` (`date_added`)
) ENGINE=InnoDB AUTO_INCREMENT=158 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `audit_log`
--
LOCK TABLES `audit_log` WRITE;
/*!40000 ALTER TABLE `audit_log` DISABLE KEYS */;
INSERT INTO `audit_log` VALUES
(1,1,'admin admin','user','security',1,'login','a:1:{s:8:\"username\";s:5:\"admin\";}','2026-02-02 02:18:21','196.178.25.39'),
(2,1,'admin admin','user','security',1,'login','a:1:{s:8:\"username\";s:5:\"admin\";}','2026-02-02 02:18:28','196.178.25.39'),
(3,0,'System','lead','lead',1,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:13:\"79.124.40.174\";}}','2026-02-02 04:18:35','79.124.40.174'),
(4,0,'System','lead','lead',1,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:13:\"79.124.40.174\";}','2026-02-02 04:18:35','79.124.40.174'),
(5,0,'System','lead','lead',2,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:13:\"79.124.40.174\";}}','2026-02-02 04:26:36','79.124.40.174'),
(6,0,'System','lead','lead',2,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:13:\"79.124.40.174\";}','2026-02-02 04:26:36','79.124.40.174'),
(7,0,'System','lead','lead',3,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:14:\"167.94.138.177\";}}','2026-02-02 05:25:49','167.94.138.177'),
(8,0,'System','lead','lead',3,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:14:\"167.94.138.177\";}','2026-02-02 05:25:49','167.94.138.177'),
(9,0,'System','lead','lead',4,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:13:\"204.76.203.93\";}}','2026-02-02 06:05:19','204.76.203.93'),
(10,0,'System','lead','lead',4,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:13:\"204.76.203.93\";}','2026-02-02 06:05:19','204.76.203.93'),
(11,0,'System','lead','lead',5,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:13:\"64.62.197.105\";}}','2026-02-02 07:02:24','64.62.197.105'),
(12,0,'System','lead','lead',5,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:13:\"64.62.197.105\";}','2026-02-02 07:02:24','64.62.197.105'),
(13,0,'System','lead','lead',6,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:11:\"5.61.209.92\";}}','2026-02-02 08:45:19','5.61.209.92'),
(14,0,'System','lead','lead',6,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:11:\"5.61.209.92\";}','2026-02-02 08:45:19','5.61.209.92'),
(15,0,'System','lead','lead',7,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:13:\"89.42.231.200\";}}','2026-02-02 10:39:54','89.42.231.200'),
(16,0,'System','lead','lead',7,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:13:\"89.42.231.200\";}','2026-02-02 10:39:54','89.42.231.200'),
(17,0,'System','lead','lead',8,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:13:\"81.168.83.103\";}}','2026-02-02 10:41:24','81.168.83.103'),
(18,0,'System','lead','lead',8,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:13:\"81.168.83.103\";}','2026-02-02 10:41:24','81.168.83.103'),
(19,1,'admin admin','user','security',1,'login','a:1:{s:8:\"username\";s:5:\"admin\";}','2026-02-02 13:26:50','197.1.229.41'),
(20,1,'admin admin','user','security',1,'login','a:1:{s:8:\"username\";s:5:\"admin\";}','2026-02-02 13:26:50','197.1.229.41'),
(21,1,'admin admin','user','security',1,'login','a:1:{s:8:\"username\";s:5:\"admin\";}','2026-02-02 13:26:50','197.1.229.41'),
(22,1,'admin admin','user','security',1,'login','a:1:{s:8:\"username\";s:5:\"admin\";}','2026-02-02 13:26:50','197.1.229.41'),
(23,1,'admin admin','user','security',1,'login','a:1:{s:8:\"username\";s:5:\"admin\";}','2026-02-02 13:26:50','197.1.229.41'),
(24,1,'admin admin','config','config',0,'update','a:16:{s:11:\"api_enabled\";i:1;s:32:\"api_oauth2_access_token_lifetime\";d:60;s:33:\"api_oauth2_refresh_token_lifetime\";d:14;s:17:\"do_not_track_bots\";a:389:{i:0;s:6:\"MSNBOT\";i:1;s:12:\"msnbot-media\";i:2;s:7:\"bingbot\";i:3;s:9:\"Googlebot\";i:4;s:18:\"Google Web Preview\";i:5;s:20:\"Mediapartners-Google\";i:6;s:11:\"Baiduspider\";i:7;s:6:\"Ezooms\";i:8;s:11:\"YahooSeeker\";i:9;s:5:\"Slurp\";i:10;s:9:\"AltaVista\";i:11;s:8:\"AVSearch\";i:12;s:8:\"Mercator\";i:13;s:7:\"Scooter\";i:14;s:8:\"InfoSeek\";i:15;s:9:\"Ultraseek\";i:16;s:5:\"Lycos\";i:17;s:4:\"Wget\";i:18;s:9:\"YandexBot\";i:19;s:13:\"Java/1.4.1_04\";i:20;s:7:\"SiteBot\";i:21;s:6:\"Exabot\";i:22;s:9:\"AhrefsBot\";i:23;s:7:\"MJ12bot\";i:24;s:15:\"NetSeer crawler\";i:25;s:11:\"TurnitinBot\";i:26;s:14:\"magpie-crawler\";i:27;s:13:\"Nutch Crawler\";i:28;s:11:\"CMS Crawler\";i:29;s:8:\"rogerbot\";i:30;s:8:\"Domnutch\";i:31;s:11:\"ssearch_bot\";i:32;s:7:\"XoviBot\";i:33;s:9:\"digincore\";i:34;s:10:\"fr-crawler\";i:35;s:9:\"SeznamBot\";i:36;s:27:\"Seznam screenshot-generator\";i:37;s:7:\"Facebot\";i:38;s:19:\"facebookexternalhit\";i:39;s:9:\"SimplePie\";i:40;s:7:\"Riddler\";i:41;s:14:\"007ac9 Crawler\";i:42;s:9:\"360Spider\";i:43;s:10:\"A6-Indexer\";i:44;s:7:\"ADmantX\";i:45;s:3:\"AHC\";i:46;s:11:\"AISearchBot\";i:47;s:11:\"APIs-Google\";i:48;s:8:\"Aboundex\";i:49;s:7:\"AddThis\";i:50;s:8:\"Adidxbot\";i:51;s:13:\"AdsBot-Google\";i:52;s:13:\"AdsTxtCrawler\";i:53;s:6:\"AdvBot\";i:54;s:6:\"Ahrefs\";i:55;s:8:\"AlphaBot\";i:56;s:17:\"Amazon CloudFront\";i:57;s:13:\"AndersPinkBot\";i:58;s:17:\"Apache-HttpClient\";i:59;s:8:\"Apercite\";i:60;s:16:\"AppEngine-Google\";i:61;s:8:\"Applebot\";i:62;s:10:\"ArchiveBot\";i:63;s:6:\"BDCbot\";i:64;s:9:\"BIGLOTRON\";i:65;s:7:\"BLEXBot\";i:66;s:8:\"BLP_bbot\";i:67;s:11:\"BTWebClient\";i:68;s:6:\"BUbiNG\";i:69;s:15:\"Baidu-YunGuanCe\";i:70;s:10:\"Barkrowler\";i:71;s:10:\"BehloolBot\";i:72;s:11:\"BingPreview\";i:73;s:10:\"BomboraBot\";i:74;s:16:\"Bot.AraTurka.com\";i:75;s:9:\"BoxcarBot\";i:76;s:11:\"BrandVerity\";i:77;s:4:\"Buck\";i:78;s:18:\"CC Metadata Scaper\";i:79;s:5:\"CCBot\";i:80;s:14:\"CapsuleChecker\";i:81;s:8:\"Cliqzbot\";i:82;s:23:\"CloudFlare-AlwaysOnline\";i:83;s:19:\"Companybook-Crawler\";i:84;s:13:\"ContextAd Bot\";i:85;s:9:\"CrunchBot\";i:86;s:19:\"CrystalSemanticsBot\";i:87;s:11:\"CyberPatrol\";i:88;s:9:\"DareBoost\";i:89;s:13:\"Datafeedwatch\";i:90;s:4:\"Daum\";i:91;s:5:\"DeuSu\";i:92;s:21:\"developers.google.com\";i:93;s:7:\"Diffbot\";i:94;s:11:\"Digg Deeper\";i:95;s:13:\"Digincore bot\";i:96;s:10:\"Discordbot\";i:97;s:6:\"Disqus\";i:98;s:7:\"DnyzBot\";i:99;s:22:\"Domain Re-Animator Bot\";i:100;s:14:\"DomainStatsBot\";i:101;s:11:\"DuckDuckBot\";i:102;s:23:\"DuckDuckGo-Favicons-Bot\";i:103;s:4:\"EZID\";i:104;s:7:\"Embedly\";i:105;s:17:\"EveryoneSocialBot\";i:106;s:11:\"ExtLinksBot\";i:107;s:23:\"FAST Enterprise Crawler\";i:108;s:15:\"FAST-WebCrawler\";i:109;s:18:\"Feedfetcher-Google\";i:110;s:6:\"Feedly\";i:111;s:11:\"Feedspotbot\";i:112;s:14:\"FemtosearchBot\";i:113;s:5:\"Fetch\";i:114;s:5:\"Fever\";i:115;s:21:\"Flamingo_SearchEngine\";i:116;s:14:\"FlipboardProxy\";i:117;s:7:\"Fyrebot\";i:118;s:13:\"GarlikCrawler\";i:119;s:6:\"Genieo\";i:120;s:9:\"Gigablast\";i:121;s:7:\"Gigabot\";i:122;s:13:\"GingerCrawler\";i:123;s:19:\"Gluten Free Crawler\";i:124;s:13:\"GnowitNewsbot\";i:125;s:14:\"Go-http-client\";i:126;s:22:\"Google-Adwords-Instant\";i:127;s:9:\"Gowikibot\";i:128;s:16:\"GrapeshotCrawler\";i:129;s:7:\"Grobbot\";i:130;s:7:\"HTTrack\";i:131;s:6:\"Hatena\";i:132;s:11:\"IAS crawler\";i:133;s:11:\"ICC-Crawler\";i:134;s:9:\"IndeedBot\";i:135;s:15:\"InterfaxScanBot\";i:136;s:10:\"IstellaBot\";i:137;s:9:\"James BOT\";i:138;s:14:\"Jamie\'s Spider\";i:139;s:8:\"Jetslide\";i:140;s:5:\"Jetty\";i:141;s:28:\"Jugendschutzprogramm-Crawler\";i:142;s:9:\"K7MLWCBot\";i:143;s:8:\"Kemvibot\";i:144;s:9:\"KosmioBot\";i:145;s:19:\"Landau-Media-Spider\";i:146;s:12:\"Laserlikebot\";i:147;s:8:\"Leikibot\";i:148;s:11:\"Linguee Bot\";i:149;s:12:\"LinkArchiver\";i:150;s:11:\"LinkedInBot\";i:151;s:10:\"LivelapBot\";i:152;s:16:\"Luminator-robots\";i:153;s:11:\"Mail.RU_Bot\";i:154;s:8:\"Mastodon\";i:155;s:7:\"MauiBot\";i:156;s:15:\"Mediatoolkitbot\";i:157;s:9:\"MegaIndex\";i:158;s:13:\"MeltwaterNews\";i:159;s:10:\"MetaJobBot\";i:160;s:7:\"MetaURI\";i:161;s:8:\"Miniflux\";i:162;s:9:\"MojeekBot\";i:163;s:8:\"Moreover\";i:164;s:8:\"MuckRack\";i:165;s:12:\"Multiviewbot\";i:166;s:4:\"NING\";i:167;s:16:\"NerdByNature.Bot\";i:168;s:19:\"NetcraftSurveyAgent\";i:169;s:8:\"Netvibes\";i:170;s:16:\"Nimbostratus-Bot\";i:171;s:6:\"Nuzzel\";i:172;s:10:\"Ocarinabot\";i:173;s:11:\"OpenHoseBot\";i:174;s:9:\"OrangeBot\";i:175;s:12:\"OutclicksBot\";i:176;s:8:\"PR-CY.RU\";i:177;s:10:\"PaperLiBot\";i:178;s:10:\"Pcore-HTTP\";i:179;s:9:\"PhantomJS\";i:180;s:7:\"PiplBot\";i:181;s:12:\"PocketParser\";i:182;s:9:\"Primalbot\";i:183;s:15:\"PrivacyAwareBot\";i:184;s:10:\"Pulsepoint\";i:185;s:13:\"Python-urllib\";i:186;s:8:\"Qwantify\";i:187;s:17:\"RankActiveLinkBot\";i:188;s:19:\"RetrevoPageAnalyzer\";i:189;s:7:\"SBL-BOT\";i:190;s:10:\"SEMrushBot\";i:191;s:8:\"SEOkicks\";i:192;s:8:\"SWIMGBot\";i:193;s:10:\"SafeDNSBot\";i:194;s:28:\"SafeSearch microdata crawler\";i:195;s:8:\"ScoutJet\";i:196;s:6:\"Scrapy\";i:197;s:25:\"Screaming Frog SEO Spider\";i:198;s:18:\"SemanticScholarBot\";i:199;s:13:\"SimpleCrawler\";i:200;s:15:\"Siteimprove.com\";i:201;s:15:\"SkypeUriPreview\";i:202;s:14:\"Slack-ImgProxy\";i:203;s:8:\"Slackbot\";i:204;s:9:\"Snacktory\";i:205;s:15:\"SocialRankIOBot\";i:206;s:5:\"Sogou\";i:207;s:5:\"Sonic\";i:208;s:12:\"StorygizeBot\";i:209;s:9:\"SurveyBot\";i:210;s:7:\"Sysomos\";i:211;s:12:\"TangibleeBot\";i:212;s:11:\"TelegramBot\";i:213;s:5:\"Teoma\";i:214;s:8:\"Thinklab\";i:215;s:6:\"TinEye\";i:216;s:13:\"ToutiaoSpider\";i:217;s:11:\"Traackr.com\";i:218;s:5:\"Trove\";i:219;s:12:\"TweetmemeBot\";i:220;s:10:\"Twitterbot\";i:221;s:6:\"Twurly\";i:222;s:6:\"Upflow\";i:223;s:11:\"UptimeRobot\";i:224;s:20:\"UsineNouvelleCrawler\";i:225;s:8:\"Veoozbot\";i:226;s:12:\"WeSEE:Search\";i:227;s:8:\"WhatsApp\";i:228;s:16:\"Xenu Link Sleuth\";i:229;s:3:\"Y!J\";i:230;s:3:\"YaK\";i:231;s:18:\"Yahoo Link Preview\";i:232;s:4:\"Yeti\";i:233;s:11:\"YisouSpider\";i:234;s:6:\"Zabbix\";i:235;s:11:\"ZoominfoBot\";i:236;s:6:\"ZumBot\";i:237;s:12:\"ZuperlistBot\";i:238;s:4:\"^LCC\";i:239;s:7:\"acapbot\";i:240;s:8:\"acoonbot\";i:241;s:10:\"adbeat_bot\";i:242;s:9:\"adscanner\";i:243;s:8:\"aiHitBot\";i:244;s:7:\"antibot\";i:245;s:6:\"arabot\";i:246;s:15:\"archive.org_bot\";i:247;s:5:\"axios\";i:248;s:15:\"backlinkcrawler\";i:249;s:7:\"betaBot\";i:250;s:10:\"bibnum.bnf\";i:251;s:6:\"binlar\";i:252;s:8:\"bitlybot\";i:253;s:9:\"blekkobot\";i:254;s:11:\"blogmuraBot\";i:255;s:10:\"bnf.fr_bot\";i:256;s:18:\"bot-pge.chlooe.com\";i:257;s:6:\"botify\";i:258;s:9:\"brainobot\";i:259;s:7:\"buzzbot\";i:260;s:9:\"cXensebot\";i:261;s:9:\"careerbot\";i:262;s:11:\"centurybot9\";i:263;s:15:\"changedetection\";i:264;s:10:\"check_http\";i:265;s:12:\"citeseerxbot\";i:266;s:6:\"coccoc\";i:267;s:21:\"collection@infegy.com\";i:268;s:22:\"content crawler spider\";i:269;s:8:\"contxbot\";i:270;s:7:\"convera\";i:271;s:9:\"crawler4j\";i:272;s:4:\"curl\";i:273;s:12:\"datagnionbot\";i:274;s:6:\"dcrawl\";i:275;s:15:\"deadlinkchecker\";i:276;s:8:\"discobot\";i:277;s:13:\"domaincrawler\";i:278;s:6:\"dotbot\";i:279;s:7:\"drupact\";i:280;s:13:\"ec2linkfinder\";i:281;s:10:\"edisterbot\";i:282;s:12:\"electricmonk\";i:283;s:8:\"elisabot\";i:284;s:7:\"epicbot\";i:285;s:6:\"eright\";i:286;s:16:\"europarchive.org\";i:287;s:6:\"exabot\";i:288;s:6:\"ezooms\";i:289;s:16:\"filterdb.iss.net\";i:290;s:8:\"findlink\";i:291;s:12:\"findthatfile\";i:292;s:8:\"findxbot\";i:293;s:6:\"fluffy\";i:294;s:7:\"fuelbot\";i:295;s:10:\"g00g1e.net\";i:296;s:12:\"g2reader-bot\";i:297;s:16:\"gnam gnam spider\";i:298;s:14:\"google-xrawler\";i:299;s:8:\"grub.org\";i:300;s:7:\"gslfbot\";i:301;s:8:\"heritrix\";i:302;s:8:\"http_get\";i:303;s:8:\"httpunit\";i:304;s:11:\"ia_archiver\";i:305;s:6:\"ichiro\";i:306;s:6:\"imrbot\";i:307;s:11:\"integromedb\";i:308;s:12:\"intelium_bot\";i:309;s:18:\"ip-web-crawler.com\";i:310;s:9:\"ips-agent\";i:311;s:7:\"iskanie\";i:312;s:23:\"it2media-domain-crawler\";i:313;s:7:\"jyxobot\";i:314;s:9:\"lb-spider\";i:315;s:6:\"libwww\";i:316;s:13:\"linkapediabot\";i:317;s:7:\"linkdex\";i:318;s:9:\"lipperhey\";i:319;s:6:\"lssbot\";i:320;s:16:\"lssrocketcrawler\";i:321;s:5:\"ltx71\";i:322;s:9:\"mappydata\";i:323;s:9:\"memorybot\";i:324;s:9:\"mindUpBot\";i:325;s:5:\"mlbot\";i:326;s:7:\"moatbot\";i:327;s:6:\"msnbot\";i:328;s:6:\"msrbot\";i:329;s:8:\"nerdybot\";i:330;s:20:\"netEstate NE Crawler\";i:331;s:17:\"netresearchserver\";i:332;s:14:\"newsharecounts\";i:333;s:9:\"newspaper\";i:334;s:8:\"niki-bot\";i:335;s:5:\"nutch\";i:336;s:6:\"okhttp\";i:337;s:6:\"omgili\";i:338;s:15:\"openindexspider\";i:339;s:8:\"page2rss\";i:340;s:9:\"panscient\";i:341;s:8:\"phpcrawl\";i:342;s:7:\"pingdom\";i:343;s:9:\"pinterest\";i:344;s:8:\"postrank\";i:345;s:8:\"proximic\";i:346;s:5:\"psbot\";i:347;s:7:\"purebot\";i:348;s:15:\"python-requests\";i:349;s:9:\"redditbot\";i:350;s:9:\"scribdbot\";i:351;s:7:\"seekbot\";i:352;s:11:\"semanticbot\";i:353;s:6:\"sentry\";i:354;s:11:\"seoscanners\";i:355;s:9:\"seznambot\";i:356;s:15:\"sistrix crawler\";i:357;s:7:\"sitebot\";i:358;s:17:\"siteexplorer.info\";i:359;s:6:\"smtbot\";i:360;s:5:\"spbot\";i:361;s:6:\"speedy\";i:362;s:7:\"summify\";i:363;s:8:\"tagoobot\";i:364;s:10:\"toplistbot\";i:365;s:11:\"tracemyfile\";i:366;s:14:\"trendictionbot\";i:367;s:11:\"turnitinbot\";i:368;s:9:\"twengabot\";i:369;s:5:\"um-LN\";i:370;s:12:\"urlappendbot\";i:371;s:10:\"vebidoobot\";i:372;s:7:\"vkShare\";i:373;s:8:\"voilabot\";i:374;s:11:\"wbsearchbot\";i:375;s:23:\"web-archive-net.com.bot\";i:376;s:17:\"webcompanycrawler\";i:377;s:6:\"webmon\";i:378;s:4:\"wget\";i:379;s:6:\"wocbot\";i:380;s:6:\"woobot\";i:381;s:8:\"woriobot\";i:382;s:6:\"wotbox\";i:383;s:7:\"xovibot\";i:384;s:7:\"yacybot\";i:385;s:10:\"yandex.com\";i:386;s:5:\"yanga\";i:387;s:7:\"yoozBot\";i:388;s:5:\"zgrab\";}s:20:\"shortener_sms_enable\";N;s:23:\"headers_sts_expire_time\";N;s:16:\"unsubscribe_text\";s:68:\"Unsubscribe to no longer receive emails from us.\";s:12:\"webview_text\";s:66:\"Having trouble reading this email? Click here.\";s:19:\"unsubscribe_message\";s:146:\"We are sorry to see you go! |EMAIL| will no longer receive emails from us. If this was by mistake, click here to re-subscribe.\";s:19:\"resubscribe_message\";s:102:\"|EMAIL| has been re-subscribed. If this was by mistake, click here to unsubscribe.\";s:22:\"default_signature_text\";s:25:\"Best regards, |FROM_NAME|\";s:13:\"sms_transport\";N;s:18:\"saml_idp_entity_id\";s:0:\"\";s:24:\"saml_idp_email_attribute\";s:12:\"EmailAddress\";s:28:\"saml_idp_firstname_attribute\";s:9:\"FirstName\";s:27:\"saml_idp_lastname_attribute\";s:8:\"LastName\";}','2026-02-02 13:31:07','197.1.229.41'),
(25,1,'admin admin','config','config',0,'update','a:2:{s:40:\"peak_interaction_timer_best_default_days\";a:3:{i:0;i:1;i:1;i:2;i:2;i:4;}s:18:\"saml_idp_entity_id\";s:0:\"\";}','2026-02-02 13:31:27','197.1.229.41'),
(26,1,'admin admin','api','client',1,'create','a:2:{s:4:\"name\";a:2:{i:0;N;i:1;s:15:\"n8n Integration\";}s:12:\"redirectUris\";a:2:{i:0;a:0:{}i:1;a:1:{i:0;s:20:\"http://n8n-app:5678/\";}}}','2026-02-02 13:35:53','197.1.229.41'),
(27,1,'admin admin','user','security',1,'login','a:1:{s:8:\"username\";s:5:\"admin\";}','2026-02-02 13:45:44','197.1.229.41'),
(28,1,'admin admin','api','client',1,'update','a:1:{s:12:\"redirectUris\";a:2:{i:0;a:1:{i:0;s:20:\"http://n8n-app:5678/\";}i:1;a:1:{i:0;s:58:\"http://173.249.20.244:5678/rest/oauth2-credential/callback\";}}}','2026-02-02 13:46:52','197.1.229.41'),
(29,1,'admin admin','email','email',1,'create','a:7:{s:12:\"dateModified\";a:2:{i:0;N;i:1;s:25:\"2026-02-02T14:19:47+00:00\";}s:4:\"name\";a:2:{i:0;N;i:1;s:18:\"Special Offer Test\";}s:7:\"subject\";a:2:{i:0;N;i:1;s:24:\"Exclusive Offer for You!\";}s:7:\"utmTags\";a:2:{i:0;a:0:{}i:1;a:4:{s:9:\"utmSource\";N;s:9:\"utmMedium\";N;s:11:\"utmCampaign\";N;s:10:\"utmContent\";N;}}s:8:\"template\";a:2:{i:0;N;i:1;s:15:\"Theme1212Column\";}s:13:\"preheaderText\";a:2:{i:0;N;i:1;s:38:\"Click here to see our special pricing!\";}s:5:\"lists\";a:2:{i:0;a:0:{}i:1;a:0:{}}}','2026-02-02 14:19:47','197.1.229.41'),
(30,1,'admin admin','webhook','webhook',1,'create','a:7:{s:6:\"events\";a:0:{}s:4:\"name\";a:2:{i:0;N;i:1;s:70:\"n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:11:\"description\";a:2:{i:0;N;i:1;s:11:\"n8n webhook\";}s:10:\"webhookUrl\";a:2:{i:0;N;i:1;s:84:\"http://173.249.20.244:5678/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:16:\"eventsOrderbyDir\";a:2:{i:0;N;i:1;s:3:\"ASC\";}s:6:\"secret\";a:2:{i:0;N;i:1;s:64:\"49d25b4ec42ea2d42a5d0090c332b0434b24874ca9351f5fcb6ad4349b314fea\";}s:12:\"dateModified\";a:2:{i:0;N;i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-02 14:27:37.952920\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}}','2026-02-02 14:27:37','127.0.0.1'),
(31,1,'admin admin','webhook','webhook',1,'delete','a:1:{s:4:\"name\";s:70:\"n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}','2026-02-02 14:27:47','127.0.0.1'),
(32,1,'admin admin','webhook','webhook',2,'create','a:7:{s:6:\"events\";a:0:{}s:4:\"name\";a:2:{i:0;N;i:1;s:70:\"n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:11:\"description\";a:2:{i:0;N;i:1;s:11:\"n8n webhook\";}s:10:\"webhookUrl\";a:2:{i:0;N;i:1;s:84:\"http://173.249.20.244:5678/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:16:\"eventsOrderbyDir\";a:2:{i:0;N;i:1;s:3:\"ASC\";}s:6:\"secret\";a:2:{i:0;N;i:1;s:64:\"da8fe7c258062000e10cd47fe915900ab047738cd291fe31fd22e80efeada095\";}s:12:\"dateModified\";a:2:{i:0;N;i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-02 14:37:42.785465\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}}','2026-02-02 14:37:42','127.0.0.1'),
(33,1,'admin admin','webhook','webhook',2,'delete','a:1:{s:4:\"name\";s:70:\"n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}','2026-02-02 14:39:42','127.0.0.1'),
(34,1,'admin admin','webhook','webhook',3,'create','a:7:{s:6:\"events\";a:0:{}s:4:\"name\";a:2:{i:0;N;i:1;s:70:\"n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:11:\"description\";a:2:{i:0;N;i:1;s:11:\"n8n webhook\";}s:10:\"webhookUrl\";a:2:{i:0;N;i:1;s:84:\"http://173.249.20.244:5678/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:16:\"eventsOrderbyDir\";a:2:{i:0;N;i:1;s:3:\"ASC\";}s:6:\"secret\";a:2:{i:0;N;i:1;s:64:\"c829a21dbb2c687a04bc69554a56fdc1cb13bec827f8715f24dbbab5c76a728f\";}s:12:\"dateModified\";a:2:{i:0;N;i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-02 14:40:27.686121\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}}','2026-02-02 14:40:27','127.0.0.1'),
(35,1,'admin admin','webhook','webhook',3,'delete','a:1:{s:4:\"name\";s:70:\"n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}','2026-02-02 14:42:27','127.0.0.1'),
(36,1,'admin admin','email','email',1,'update','a:1:{s:5:\"lists\";a:2:{i:0;a:0:{}i:1;a:0:{}}}','2026-02-02 14:52:10','197.1.229.41'),
(37,1,'admin admin','webhook','webhook',4,'create','a:7:{s:6:\"events\";a:0:{}s:4:\"name\";a:2:{i:0;N;i:1;s:70:\"n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:11:\"description\";a:2:{i:0;N;i:1;s:11:\"n8n webhook\";}s:10:\"webhookUrl\";a:2:{i:0;N;i:1;s:84:\"http://173.249.20.244:5678/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:16:\"eventsOrderbyDir\";a:2:{i:0;N;i:1;s:3:\"ASC\";}s:6:\"secret\";a:2:{i:0;N;i:1;s:64:\"a506e9949942bc0c7c9eb32429b6ff94c3f5cfda3e03154a6f0856e86b2f98be\";}s:12:\"dateModified\";a:2:{i:0;N;i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-02 14:54:11.295609\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}}','2026-02-02 14:54:11','127.0.0.1'),
(38,1,'admin admin','webhook','webhook',4,'delete','a:1:{s:4:\"name\";s:70:\"n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}','2026-02-02 14:55:23','127.0.0.1'),
(39,1,'admin admin','webhook','webhook',5,'create','a:7:{s:6:\"events\";a:0:{}s:4:\"name\";a:2:{i:0;N;i:1;s:70:\"n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:11:\"description\";a:2:{i:0;N;i:1;s:11:\"n8n webhook\";}s:10:\"webhookUrl\";a:2:{i:0;N;i:1;s:84:\"http://173.249.20.244:5678/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:16:\"eventsOrderbyDir\";a:2:{i:0;N;i:1;s:3:\"ASC\";}s:6:\"secret\";a:2:{i:0;N;i:1;s:64:\"37ee3404dd578390b67def769c3bdbe7c76fe23a3aaa0a58d5fd996e1010f59e\";}s:12:\"dateModified\";a:2:{i:0;N;i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-02 14:55:25.953834\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}}','2026-02-02 14:55:25','127.0.0.1'),
(40,1,'admin admin','webhook','webhook',5,'delete','a:1:{s:4:\"name\";s:70:\"n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}','2026-02-02 14:55:30','127.0.0.1'),
(41,1,'admin admin','webhook','webhook',6,'create','a:7:{s:6:\"events\";a:0:{}s:4:\"name\";a:2:{i:0;N;i:1;s:70:\"n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:11:\"description\";a:2:{i:0;N;i:1;s:11:\"n8n webhook\";}s:10:\"webhookUrl\";a:2:{i:0;N;i:1;s:84:\"http://173.249.20.244:5678/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:16:\"eventsOrderbyDir\";a:2:{i:0;N;i:1;s:3:\"ASC\";}s:6:\"secret\";a:2:{i:0;N;i:1;s:64:\"8d1c9cb4cc8cc9abca9314dcfe19eff9d6e1983fe431f0da9bfe99b29c8697a2\";}s:12:\"dateModified\";a:2:{i:0;N;i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-02 14:55:33.549815\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}}','2026-02-02 14:55:33','127.0.0.1'),
(42,1,'admin admin','webhook','webhook',6,'delete','a:1:{s:4:\"name\";s:70:\"n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}','2026-02-02 14:55:36','127.0.0.1'),
(43,1,'admin admin','user','user',1,'update','a:3:{s:5:\"email\";a:2:{i:0;s:15:\"admin@gmail.com\";i:1;s:25:\"ameniboukottaya@gmail.com\";}s:9:\"signature\";a:2:{i:0;N;i:1;s:25:\"Best regards, |FROM_NAME|\";}s:12:\"dateModified\";a:2:{i:0;N;i:1;s:25:\"2026-02-02T15:00:05+00:00\";}}','2026-02-02 15:00:05','197.1.229.41'),
(44,1,'admin admin','email','email',1,'update','a:1:{s:5:\"lists\";a:2:{i:0;a:0:{}i:1;a:0:{}}}','2026-02-02 15:00:28','197.1.229.41'),
(45,1,'admin admin','config','config',0,'update','a:4:{s:16:\"mailer_from_name\";s:13:\"Navitrends UK\";s:17:\"mailer_from_email\";s:27:\"contact@navitrends-uk.store\";s:10:\"mailer_dsn\";s:65:\"smtp://contact%%40navitrends-uk.store:2025Aa2025@ssl0.ovh.net:465\";s:18:\"saml_idp_entity_id\";s:0:\"\";}','2026-02-02 15:30:16','197.1.229.41'),
(46,1,'admin admin','lead','lead',9,'update','a:9:{s:5:\"owner\";a:2:{i:0;N;i:1;i:1;}s:5:\"title\";a:2:{i:0;N;i:1;s:4:\"bouk\";}s:6:\"fields\";a:4:{s:5:\"title\";a:2:{i:0;N;i:1;s:4:\"bouk\";}s:9:\"firstname\";a:2:{i:0;N;i:1;s:5:\"ameni\";}s:5:\"email\";a:2:{i:0;N;i:1;s:25:\"boukottayaamani@gmail.com\";}s:6:\"points\";a:2:{i:0;i:0;i:1;d:0;}}s:9:\"firstname\";a:2:{i:0;N;i:1;s:5:\"ameni\";}s:5:\"email\";a:2:{i:0;N;i:1;s:25:\"boukottayaamani@gmail.com\";}s:6:\"points\";a:2:{i:0;i:0;i:1;d:0;}s:14:\"dateIdentified\";a:2:{i:0;s:0:\"\";i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-02 15:42:48.278521\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}s:14:\"manipulated_by\";s:11:\"admin admin\";s:15:\"manipulator_key\";s:9:\"lead:lead\";}','2026-02-02 15:42:48','197.1.229.41'),
(47,1,'admin admin','lead','lead',9,'identified','a:0:{}','2026-02-02 15:42:48','197.1.229.41'),
(48,0,'System','lead','lead',10,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:13:\"81.168.83.103\";}}','2026-02-02 16:11:43','81.168.83.103'),
(49,0,'System','lead','lead',10,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:13:\"81.168.83.103\";}','2026-02-02 16:11:43','81.168.83.103'),
(50,0,'System','lead','lead',11,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:14:\"167.94.138.182\";}}','2026-02-02 19:09:41','167.94.138.182'),
(51,0,'System','lead','lead',11,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:14:\"167.94.138.182\";}','2026-02-02 19:09:41','167.94.138.182'),
(52,0,'System','lead','lead',13,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:12:\"43.165.61.15\";}}','2026-02-02 19:12:27','43.165.61.15'),
(53,0,'System','lead','lead',12,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:12:\"43.165.61.15\";}}','2026-02-02 19:12:27','43.165.61.15'),
(54,0,'System','lead','lead',12,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:12:\"43.165.61.15\";}','2026-02-02 19:12:27','43.165.61.15'),
(55,0,'System','lead','lead',13,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:12:\"43.165.61.15\";}','2026-02-02 19:12:27','43.165.61.15'),
(56,0,'System','lead','lead',14,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:12:\"43.165.61.15\";}}','2026-02-02 19:12:27','43.165.61.15'),
(57,0,'System','lead','lead',14,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:12:\"43.165.61.15\";}','2026-02-02 19:12:27','43.165.61.15'),
(58,0,'System','lead','lead',15,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:12:\"43.165.61.15\";}}','2026-02-02 19:12:28','43.165.61.15'),
(59,0,'System','lead','lead',15,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:12:\"43.165.61.15\";}','2026-02-02 19:12:28','43.165.61.15'),
(60,0,'System','lead','lead',16,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:12:\"43.165.61.15\";}}','2026-02-02 19:12:28','43.165.61.15'),
(61,0,'System','lead','lead',16,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:12:\"43.165.61.15\";}','2026-02-02 19:12:28','43.165.61.15'),
(62,0,'System','lead','lead',17,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:13:\"79.124.40.174\";}}','2026-02-02 22:07:02','79.124.40.174'),
(63,0,'System','lead','lead',17,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:13:\"79.124.40.174\";}','2026-02-02 22:07:02','79.124.40.174'),
(64,0,'System','lead','lead',18,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:11:\"65.49.1.218\";}}','2026-02-03 02:55:56','65.49.1.218'),
(65,0,'System','lead','lead',18,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:11:\"65.49.1.218\";}','2026-02-03 02:55:56','65.49.1.218'),
(66,0,'System','lead','lead',19,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:11:\"5.61.209.92\";}}','2026-02-03 03:06:20','5.61.209.92'),
(67,0,'System','lead','lead',19,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:11:\"5.61.209.92\";}','2026-02-03 03:06:20','5.61.209.92'),
(68,0,'System','lead','lead',20,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:13:\"81.168.83.103\";}}','2026-02-03 05:00:21','81.168.83.103'),
(69,0,'System','lead','lead',20,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:13:\"81.168.83.103\";}','2026-02-03 05:00:21','81.168.83.103'),
(70,0,'System','lead','lead',21,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:13:\"79.124.40.174\";}}','2026-02-03 05:52:17','79.124.40.174'),
(71,0,'System','lead','lead',21,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:13:\"79.124.40.174\";}','2026-02-03 05:52:17','79.124.40.174'),
(72,0,'System','lead','lead',22,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:13:\"81.168.83.103\";}}','2026-02-03 08:00:26','81.168.83.103'),
(73,0,'System','lead','lead',22,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:13:\"81.168.83.103\";}','2026-02-03 08:00:26','81.168.83.103'),
(74,1,'admin admin','user','security',1,'login','a:1:{s:8:\"username\";s:5:\"admin\";}','2026-02-03 08:27:35','197.3.35.234'),
(75,1,'admin admin','user','security',1,'login','a:1:{s:8:\"username\";s:5:\"admin\";}','2026-02-03 08:27:35','197.3.35.234'),
(76,0,'System','lead','lead',23,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:13:\"89.42.231.200\";}}','2026-02-03 08:43:15','89.42.231.200'),
(77,0,'System','lead','lead',23,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:13:\"89.42.231.200\";}','2026-02-03 08:43:15','89.42.231.200'),
(78,1,'admin admin','email','email',1,'update','a:1:{s:5:\"lists\";a:2:{i:0;a:0:{}i:1;a:0:{}}}','2026-02-03 08:55:48','197.3.35.234'),
(79,1,'admin admin','webhook','webhook',7,'create','a:7:{s:6:\"events\";a:0:{}s:4:\"name\";a:2:{i:0;N;i:1;s:70:\"n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:11:\"description\";a:2:{i:0;N;i:1;s:11:\"n8n webhook\";}s:10:\"webhookUrl\";a:2:{i:0;N;i:1;s:84:\"http://173.249.20.244:5678/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:16:\"eventsOrderbyDir\";a:2:{i:0;N;i:1;s:3:\"ASC\";}s:6:\"secret\";a:2:{i:0;N;i:1;s:64:\"b8e927154b18558d52f76b92275f70e3f381941b1467046a6ec7f2d91e61f368\";}s:12:\"dateModified\";a:2:{i:0;N;i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-03 08:58:28.902240\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}}','2026-02-03 08:58:28','127.0.0.1'),
(80,1,'admin admin','webhook','webhook',7,'delete','a:1:{s:4:\"name\";s:70:\"n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}','2026-02-03 09:00:28','127.0.0.1'),
(81,1,'admin admin','webhook','webhook',8,'create','a:7:{s:6:\"events\";a:0:{}s:4:\"name\";a:2:{i:0;N;i:1;s:70:\"n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:11:\"description\";a:2:{i:0;N;i:1;s:11:\"n8n webhook\";}s:10:\"webhookUrl\";a:2:{i:0;N;i:1;s:84:\"http://173.249.20.244:5678/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:16:\"eventsOrderbyDir\";a:2:{i:0;N;i:1;s:3:\"ASC\";}s:6:\"secret\";a:2:{i:0;N;i:1;s:64:\"a053c7876469aca1ea002586a4707f4d7299adb4e8801adb58bc0c7f8bf044ff\";}s:12:\"dateModified\";a:2:{i:0;N;i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-03 09:01:29.730020\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}}','2026-02-03 09:01:29','127.0.0.1'),
(82,1,'admin admin','webhook','webhook',8,'delete','a:1:{s:4:\"name\";s:70:\"n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}','2026-02-03 09:03:29','127.0.0.1'),
(83,1,'admin admin','webhook','webhook',9,'create','a:7:{s:6:\"events\";a:0:{}s:4:\"name\";a:2:{i:0;N;i:1;s:70:\"n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:11:\"description\";a:2:{i:0;N;i:1;s:11:\"n8n webhook\";}s:10:\"webhookUrl\";a:2:{i:0;N;i:1;s:84:\"http://173.249.20.244:5678/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:16:\"eventsOrderbyDir\";a:2:{i:0;N;i:1;s:3:\"ASC\";}s:6:\"secret\";a:2:{i:0;N;i:1;s:64:\"d8b77411ebb3f5cc0791a14b909519d81a7c289da8d300a6804592795dccf0ba\";}s:12:\"dateModified\";a:2:{i:0;N;i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-03 09:07:12.822157\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}}','2026-02-03 09:07:12','127.0.0.1'),
(84,1,'admin admin','webhook','webhook',9,'delete','a:1:{s:4:\"name\";s:70:\"n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}','2026-02-03 09:07:19','127.0.0.1'),
(85,1,'admin admin','webhook','webhook',10,'create','a:7:{s:6:\"events\";a:0:{}s:4:\"name\";a:2:{i:0;N;i:1;s:70:\"n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:11:\"description\";a:2:{i:0;N;i:1;s:11:\"n8n webhook\";}s:10:\"webhookUrl\";a:2:{i:0;N;i:1;s:84:\"http://173.249.20.244:5678/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:16:\"eventsOrderbyDir\";a:2:{i:0;N;i:1;s:3:\"ASC\";}s:6:\"secret\";a:2:{i:0;N;i:1;s:64:\"b19df81b070082973c2cb78ecf0c77ca3b2aee68c836b936c42f13a6f62e1b4f\";}s:12:\"dateModified\";a:2:{i:0;N;i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-03 09:07:22.132462\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}}','2026-02-03 09:07:22','127.0.0.1'),
(86,1,'admin admin','webhook','webhook',10,'delete','a:1:{s:4:\"name\";s:70:\"n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}','2026-02-03 09:09:22','127.0.0.1'),
(87,1,'admin admin','user','user',1,'update','a:1:{s:5:\"email\";a:2:{i:0;s:25:\"ameniboukottaya@gmail.com\";i:1;s:27:\"contact@navitrends-uk.store\";}}','2026-02-03 09:11:14','197.3.35.234'),
(88,1,'admin admin','webhook','webhook',11,'create','a:7:{s:6:\"events\";a:0:{}s:4:\"name\";a:2:{i:0;N;i:1;s:70:\"n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:11:\"description\";a:2:{i:0;N;i:1;s:11:\"n8n webhook\";}s:10:\"webhookUrl\";a:2:{i:0;N;i:1;s:84:\"http://173.249.20.244:5678/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:16:\"eventsOrderbyDir\";a:2:{i:0;N;i:1;s:3:\"ASC\";}s:6:\"secret\";a:2:{i:0;N;i:1;s:64:\"92028c11f8e57c058536558aaeb5f05a3d2d774706c49c9b78990055291c305a\";}s:12:\"dateModified\";a:2:{i:0;N;i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-03 09:14:18.327598\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}}','2026-02-03 09:14:18','127.0.0.1'),
(89,1,'admin admin','webhook','webhook',11,'delete','a:1:{s:4:\"name\";s:70:\"n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}','2026-02-03 09:16:18','127.0.0.1'),
(90,1,'admin admin','webhook','webhook',12,'create','a:7:{s:6:\"events\";a:0:{}s:4:\"name\";a:2:{i:0;N;i:1;s:70:\"n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:11:\"description\";a:2:{i:0;N;i:1;s:11:\"n8n webhook\";}s:10:\"webhookUrl\";a:2:{i:0;N;i:1;s:84:\"http://173.249.20.244:5678/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:16:\"eventsOrderbyDir\";a:2:{i:0;N;i:1;s:3:\"ASC\";}s:6:\"secret\";a:2:{i:0;N;i:1;s:64:\"6b43025e939a95bca2130ecaa6eda450127eb1f5cc611e6a7b10e5f4d143f3f7\";}s:12:\"dateModified\";a:2:{i:0;N;i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-03 09:32:16.639045\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}}','2026-02-03 09:32:16','127.0.0.1'),
(91,1,'admin admin','webhook','webhook',12,'delete','a:1:{s:4:\"name\";s:70:\"n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}','2026-02-03 09:34:16','127.0.0.1'),
(92,1,'admin admin','lead','lead',24,'update','a:9:{s:5:\"owner\";a:2:{i:0;N;i:1;i:1;}s:9:\"firstname\";a:2:{i:0;N;i:1;s:10:\"Boukottaya\";}s:6:\"fields\";a:4:{s:9:\"firstname\";a:2:{i:0;N;i:1;s:10:\"Boukottaya\";}s:8:\"lastname\";a:2:{i:0;N;i:1;s:5:\"ameni\";}s:5:\"email\";a:2:{i:0;N;i:1;s:25:\"ameniboukottaya@gmail.com\";}s:6:\"points\";a:2:{i:0;i:0;i:1;N;}}s:8:\"lastname\";a:2:{i:0;N;i:1;s:5:\"ameni\";}s:5:\"email\";a:2:{i:0;N;i:1;s:25:\"ameniboukottaya@gmail.com\";}s:6:\"points\";a:2:{i:0;i:0;i:1;N;}s:14:\"dateIdentified\";a:2:{i:0;s:0:\"\";i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-03 09:34:17.563238\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}s:14:\"manipulated_by\";s:11:\"admin admin\";s:15:\"manipulator_key\";s:9:\"lead:lead\";}','2026-02-03 09:34:17','197.3.35.234'),
(93,1,'admin admin','lead','lead',24,'identified','a:0:{}','2026-02-03 09:34:17','197.3.35.234'),
(94,1,'admin admin','webhook','webhook',13,'create','a:5:{s:6:\"events\";a:0:{}s:4:\"name\";a:2:{i:0;N;i:1;s:17:\"Email Open to n8n\";}s:10:\"webhookUrl\";a:2:{i:0;N;i:1;s:84:\"http://173.249.20.244:5678/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:6:\"secret\";a:2:{i:0;N;i:1;s:64:\"f0f01cbf2481f243322cd3208af3bf0d28f95c5d364e598ab8b9d4e06a31e41f\";}s:12:\"dateModified\";a:2:{i:0;N;i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-03 09:50:32.203376\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}}','2026-02-03 09:50:32','197.3.35.234'),
(95,1,'admin admin','webhook','webhook',13,'update','a:2:{s:6:\"events\";a:0:{}s:10:\"webhookUrl\";a:2:{i:0;s:84:\"http://173.249.20.244:5678/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";i:1;s:56:\"http://173.249.20.244:5678/webhook/oo9esHaXR5AyeZU38HsLZ\";}}','2026-02-03 09:51:47','197.3.35.234'),
(96,1,'admin admin','webhook','webhook',13,'update','a:1:{s:6:\"events\";a:0:{}}','2026-02-03 09:51:58','197.3.35.234'),
(97,1,'admin admin','webhook','webhook',14,'create','a:7:{s:6:\"events\";a:0:{}s:4:\"name\";a:2:{i:0;N;i:1;s:70:\"n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:11:\"description\";a:2:{i:0;N;i:1;s:11:\"n8n webhook\";}s:10:\"webhookUrl\";a:2:{i:0;N;i:1;s:84:\"http://173.249.20.244:5678/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:16:\"eventsOrderbyDir\";a:2:{i:0;N;i:1;s:3:\"ASC\";}s:6:\"secret\";a:2:{i:0;N;i:1;s:64:\"957705bd15d1bbe0633a9e4cda89302da6ffbfb85218e2d068c1e726cf571e29\";}s:12:\"dateModified\";a:2:{i:0;N;i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-03 09:52:17.969876\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}}','2026-02-03 09:52:17','127.0.0.1'),
(98,1,'admin admin','webhook','webhook',13,'update','a:2:{s:6:\"events\";a:0:{}s:10:\"webhookUrl\";a:2:{i:0;s:56:\"http://173.249.20.244:5678/webhook/oo9esHaXR5AyeZU38HsLZ\";i:1;s:84:\"http://173.249.20.244:5678/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}}','2026-02-03 09:53:55','197.3.35.234'),
(99,1,'admin admin','webhook','webhook',15,'create','a:7:{s:6:\"events\";a:0:{}s:4:\"name\";a:2:{i:0;N;i:1;s:70:\"n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:11:\"description\";a:2:{i:0;N;i:1;s:11:\"n8n webhook\";}s:10:\"webhookUrl\";a:2:{i:0;N;i:1;s:84:\"http://173.249.20.244:5678/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:16:\"eventsOrderbyDir\";a:2:{i:0;N;i:1;s:3:\"ASC\";}s:6:\"secret\";a:2:{i:0;N;i:1;s:64:\"54edba4ebc583157553fa72c60dba8b6ed2daf848aac4ead5b17df06883a73e5\";}s:12:\"dateModified\";a:2:{i:0;N;i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-03 09:54:05.361144\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}}','2026-02-03 09:54:05','127.0.0.1'),
(100,1,'admin admin','webhook','webhook',13,'update','a:1:{s:6:\"events\";a:0:{}}','2026-02-03 09:55:05','197.3.35.234'),
(101,1,'admin admin','webhook','webhook',16,'create','a:7:{s:6:\"events\";a:0:{}s:4:\"name\";a:2:{i:0;N;i:1;s:70:\"n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:11:\"description\";a:2:{i:0;N;i:1;s:11:\"n8n webhook\";}s:10:\"webhookUrl\";a:2:{i:0;N;i:1;s:84:\"http://173.249.20.244:5678/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:16:\"eventsOrderbyDir\";a:2:{i:0;N;i:1;s:3:\"ASC\";}s:6:\"secret\";a:2:{i:0;N;i:1;s:64:\"038c1b901dfb230758bbea5db018a03303e4e522a75f0342b4b36c3664a8e29b\";}s:12:\"dateModified\";a:2:{i:0;N;i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-03 09:57:23.658116\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}}','2026-02-03 09:57:23','127.0.0.1'),
(102,1,'admin admin','webhook','webhook',17,'create','a:7:{s:6:\"events\";a:0:{}s:4:\"name\";a:2:{i:0;N;i:1;s:70:\"n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:11:\"description\";a:2:{i:0;N;i:1;s:11:\"n8n webhook\";}s:10:\"webhookUrl\";a:2:{i:0;N;i:1;s:84:\"http://173.249.20.244:5678/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";}s:16:\"eventsOrderbyDir\";a:2:{i:0;N;i:1;s:3:\"ASC\";}s:6:\"secret\";a:2:{i:0;N;i:1;s:64:\"879092839d610e74baa85bf88ecbdd0fcf03ba5fd591f9d77c65f5c682fe4121\";}s:12:\"dateModified\";a:2:{i:0;N;i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-03 09:58:58.267735\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}}','2026-02-03 09:58:58','127.0.0.1'),
(103,1,'admin admin','user','security',1,'login','a:1:{s:8:\"username\";s:5:\"admin\";}','2026-02-03 10:08:02','197.3.35.234'),
(104,0,'System','lead','lead',25,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:13:\"206.168.34.55\";}}','2026-02-03 10:24:51','206.168.34.55'),
(105,0,'System','lead','lead',25,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:13:\"206.168.34.55\";}','2026-02-03 10:24:51','206.168.34.55'),
(106,1,'admin admin','webhook','webhook',13,'update','a:1:{s:6:\"events\";a:0:{}}','2026-02-03 10:31:57','197.3.35.234'),
(107,1,'admin admin','webhook','webhook',13,'update','a:2:{s:6:\"events\";a:0:{}s:11:\"description\";a:2:{i:0;N;i:1;s:4:\"test\";}}','2026-02-03 10:34:06','197.3.35.234'),
(108,1,'admin admin','webhook','webhook',13,'update','a:1:{s:6:\"events\";a:0:{}}','2026-02-03 10:39:20','197.3.35.234'),
(109,1,'admin admin','webhook','webhook',13,'update','a:1:{s:6:\"events\";a:0:{}}','2026-02-03 10:39:24','197.3.35.234'),
(110,1,'admin admin','webhook','webhook',13,'update','a:2:{s:6:\"events\";a:0:{}s:10:\"webhookUrl\";a:2:{i:0;s:84:\"http://173.249.20.244:5678/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook\";i:1;s:79:\"http://173.249.20.244:5678/webhook/9c9fca76-713e-4398-a3b2-788865efcc74/webhook\";}}','2026-02-03 10:45:44','197.3.35.234'),
(111,1,'admin admin','webhook','webhook',13,'update','a:2:{s:6:\"events\";a:0:{}s:10:\"webhookUrl\";a:2:{i:0;s:79:\"http://173.249.20.244:5678/webhook/9c9fca76-713e-4398-a3b2-788865efcc74/webhook\";i:1;s:56:\"http://173.249.20.244:5678/webhook/oo9esHaXR5AyeZU38HsLZ\";}}','2026-02-03 10:47:35','197.3.35.234'),
(112,1,'admin admin','webhook','webhook',18,'create','a:7:{s:6:\"events\";a:0:{}s:4:\"name\";a:2:{i:0;N;i:1;s:70:\"n8n-webhook:/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook\";}s:11:\"description\";a:2:{i:0;N;i:1;s:11:\"n8n webhook\";}s:10:\"webhookUrl\";a:2:{i:0;N;i:1;s:84:\"http://173.249.20.244:5678/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook\";}s:16:\"eventsOrderbyDir\";a:2:{i:0;N;i:1;s:3:\"ASC\";}s:6:\"secret\";a:2:{i:0;N;i:1;s:64:\"741350dcb86d9b2385cc9c16892767b474ecbf35dda003ad8ba823fa4a0b4518\";}s:12:\"dateModified\";a:2:{i:0;N;i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-03 10:48:43.486526\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}}','2026-02-03 10:48:43','127.0.0.1'),
(113,1,'admin admin','webhook','webhook',19,'create','a:7:{s:6:\"events\";a:0:{}s:4:\"name\";a:2:{i:0;N;i:1;s:70:\"n8n-webhook:/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook\";}s:11:\"description\";a:2:{i:0;N;i:1;s:11:\"n8n webhook\";}s:10:\"webhookUrl\";a:2:{i:0;N;i:1;s:84:\"http://173.249.20.244:5678/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook\";}s:16:\"eventsOrderbyDir\";a:2:{i:0;N;i:1;s:3:\"ASC\";}s:6:\"secret\";a:2:{i:0;N;i:1;s:64:\"14e18d0e90cf9e8d243b065771fcda96dffdf9685425913bbe294920ff128a38\";}s:12:\"dateModified\";a:2:{i:0;N;i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-03 10:51:33.180386\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}}','2026-02-03 10:51:33','127.0.0.1'),
(114,0,'System','lead','lead',26,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:11:\"5.61.209.92\";}}','2026-02-03 13:34:52','5.61.209.92'),
(115,0,'System','lead','lead',26,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:11:\"5.61.209.92\";}','2026-02-03 13:34:52','5.61.209.92'),
(116,0,'System','lead','lead',27,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:13:\"81.168.83.103\";}}','2026-02-03 13:54:01','81.168.83.103'),
(117,0,'System','lead','lead',27,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:13:\"81.168.83.103\";}','2026-02-03 13:54:01','81.168.83.103'),
(118,0,'System','lead','lead',28,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:13:\"89.42.231.200\";}}','2026-02-03 20:16:29','89.42.231.200'),
(119,0,'System','lead','lead',28,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:13:\"89.42.231.200\";}','2026-02-03 20:16:29','89.42.231.200'),
(120,0,'System','lead','lead',29,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:13:\"79.124.40.174\";}}','2026-02-03 23:33:47','79.124.40.174'),
(121,0,'System','lead','lead',29,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:13:\"79.124.40.174\";}','2026-02-03 23:33:47','79.124.40.174'),
(122,0,'System','lead','lead',30,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:13:\"134.122.9.112\";}}','2026-02-04 05:13:19','134.122.9.112'),
(123,0,'System','lead','lead',30,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:13:\"134.122.9.112\";}','2026-02-04 05:13:19','134.122.9.112'),
(124,0,'System','lead','lead',31,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:13:\"79.124.40.174\";}}','2026-02-04 07:21:58','79.124.40.174'),
(125,0,'System','lead','lead',31,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:13:\"79.124.40.174\";}','2026-02-04 07:21:58','79.124.40.174'),
(126,0,'System','lead','lead',32,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:13:\"89.42.231.200\";}}','2026-02-04 08:16:41','89.42.231.200'),
(127,0,'System','lead','lead',32,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:13:\"89.42.231.200\";}','2026-02-04 08:16:41','89.42.231.200'),
(128,1,'admin admin','user','security',1,'login','a:1:{s:8:\"username\";s:5:\"admin\";}','2026-02-04 08:40:47','197.3.47.157'),
(129,1,'admin admin','user','security',1,'login','a:1:{s:8:\"username\";s:5:\"admin\";}','2026-02-04 10:09:07','197.15.116.204'),
(130,1,'admin admin','user','security',1,'login','a:1:{s:8:\"username\";s:5:\"admin\";}','2026-02-04 10:09:07','197.15.116.204'),
(131,1,'admin admin','webhook','webhook',20,'create','a:7:{s:6:\"events\";a:0:{}s:4:\"name\";a:2:{i:0;N;i:1;s:70:\"n8n-webhook:/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook\";}s:11:\"description\";a:2:{i:0;N;i:1;s:11:\"n8n webhook\";}s:10:\"webhookUrl\";a:2:{i:0;N;i:1;s:84:\"http://173.249.20.244:5678/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook\";}s:16:\"eventsOrderbyDir\";a:2:{i:0;N;i:1;s:3:\"ASC\";}s:6:\"secret\";a:2:{i:0;N;i:1;s:64:\"68ad4b48fce1ef9174052621f10755d1f71b84014a38db96659986fbe5cd5a38\";}s:12:\"dateModified\";a:2:{i:0;N;i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-04 10:21:20.599131\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}}','2026-02-04 10:21:20','127.0.0.1'),
(132,1,'admin admin','webhook','webhook',21,'create','a:7:{s:6:\"events\";a:0:{}s:4:\"name\";a:2:{i:0;N;i:1;s:70:\"n8n-webhook:/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook\";}s:11:\"description\";a:2:{i:0;N;i:1;s:11:\"n8n webhook\";}s:10:\"webhookUrl\";a:2:{i:0;N;i:1;s:84:\"http://173.249.20.244:5678/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook\";}s:16:\"eventsOrderbyDir\";a:2:{i:0;N;i:1;s:3:\"ASC\";}s:6:\"secret\";a:2:{i:0;N;i:1;s:64:\"5ee1877febf5550f7fa237003122c5975021f2cc7dbf4b2e27e9a037ca42757d\";}s:12:\"dateModified\";a:2:{i:0;N;i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-04 10:22:30.459445\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}}','2026-02-04 10:22:30','127.0.0.1'),
(133,1,'admin admin','webhook','webhook',22,'create','a:7:{s:6:\"events\";a:0:{}s:4:\"name\";a:2:{i:0;N;i:1;s:70:\"n8n-webhook:/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook\";}s:11:\"description\";a:2:{i:0;N;i:1;s:11:\"n8n webhook\";}s:10:\"webhookUrl\";a:2:{i:0;N;i:1;s:84:\"http://173.249.20.244:5678/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook\";}s:16:\"eventsOrderbyDir\";a:2:{i:0;N;i:1;s:3:\"ASC\";}s:6:\"secret\";a:2:{i:0;N;i:1;s:64:\"57b4d252c70adcf02b11f778e431c6ef609b426bf1732cd9504816e6ebc7d0f7\";}s:12:\"dateModified\";a:2:{i:0;N;i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-04 10:22:35.646527\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}}','2026-02-04 10:22:35','127.0.0.1'),
(134,1,'admin admin','webhook','webhook',23,'create','a:7:{s:6:\"events\";a:0:{}s:4:\"name\";a:2:{i:0;N;i:1;s:70:\"n8n-webhook:/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook\";}s:11:\"description\";a:2:{i:0;N;i:1;s:11:\"n8n webhook\";}s:10:\"webhookUrl\";a:2:{i:0;N;i:1;s:84:\"http://173.249.20.244:5678/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook\";}s:16:\"eventsOrderbyDir\";a:2:{i:0;N;i:1;s:3:\"ASC\";}s:6:\"secret\";a:2:{i:0;N;i:1;s:64:\"5f753a44bf0455b7c8bc1937a5f08a2bd8a9f71a76f53ccfa8967a153d17ff6d\";}s:12:\"dateModified\";a:2:{i:0;N;i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-04 10:23:08.902376\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}}','2026-02-04 10:23:08','127.0.0.1'),
(135,1,'admin admin','webhook','webhook',13,'update','a:1:{s:6:\"events\";a:0:{}}','2026-02-04 10:24:09','197.15.116.204'),
(136,1,'admin admin','webhook','webhook',13,'update','a:1:{s:6:\"events\";a:0:{}}','2026-02-04 10:24:26','197.15.116.204'),
(137,1,'admin admin','webhook','webhook',24,'create','a:7:{s:6:\"events\";a:0:{}s:4:\"name\";a:2:{i:0;N;i:1;s:70:\"n8n-webhook:/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook\";}s:11:\"description\";a:2:{i:0;N;i:1;s:11:\"n8n webhook\";}s:10:\"webhookUrl\";a:2:{i:0;N;i:1;s:84:\"http://173.249.20.244:5678/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook\";}s:16:\"eventsOrderbyDir\";a:2:{i:0;N;i:1;s:3:\"ASC\";}s:6:\"secret\";a:2:{i:0;N;i:1;s:64:\"d5435bc7f249ced73af1d013da5609f165fefc763a740ca480d584fa82b842f9\";}s:12:\"dateModified\";a:2:{i:0;N;i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-04 10:24:48.301554\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}}','2026-02-04 10:24:48','127.0.0.1'),
(138,1,'admin admin','webhook','webhook',13,'update','a:2:{s:6:\"events\";a:0:{}s:10:\"webhookUrl\";a:2:{i:0;s:56:\"http://173.249.20.244:5678/webhook/oo9esHaXR5AyeZU38HsLZ\";i:1;s:79:\"http://173.249.20.244:5678/webhook/9c9fca76-713e-4398-a3b2-788865efcc74/webhook\";}}','2026-02-04 10:25:13','197.15.116.204'),
(139,1,'admin admin','webhook','webhook',25,'create','a:7:{s:6:\"events\";a:0:{}s:4:\"name\";a:2:{i:0;N;i:1;s:70:\"n8n-webhook:/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook\";}s:11:\"description\";a:2:{i:0;N;i:1;s:11:\"n8n webhook\";}s:10:\"webhookUrl\";a:2:{i:0;N;i:1;s:84:\"http://173.249.20.244:5678/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook\";}s:16:\"eventsOrderbyDir\";a:2:{i:0;N;i:1;s:3:\"ASC\";}s:6:\"secret\";a:2:{i:0;N;i:1;s:64:\"eb71890e66cc41fbb7178f361262b4804d55fe71b3e419974930eb3400469805\";}s:12:\"dateModified\";a:2:{i:0;N;i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-04 10:25:42.921588\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}}','2026-02-04 10:25:42','127.0.0.1'),
(140,1,'admin admin','webhook','webhook',26,'create','a:7:{s:6:\"events\";a:0:{}s:4:\"name\";a:2:{i:0;N;i:1;s:70:\"n8n-webhook:/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook\";}s:11:\"description\";a:2:{i:0;N;i:1;s:11:\"n8n webhook\";}s:10:\"webhookUrl\";a:2:{i:0;N;i:1;s:84:\"http://173.249.20.244:5678/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook\";}s:16:\"eventsOrderbyDir\";a:2:{i:0;N;i:1;s:3:\"ASC\";}s:6:\"secret\";a:2:{i:0;N;i:1;s:64:\"f8ea25fbebf5474719f649b91a92cbe52379e0d2265187cae8d87152c8f7b823\";}s:12:\"dateModified\";a:2:{i:0;N;i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-04 10:26:29.268149\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}}','2026-02-04 10:26:29','127.0.0.1'),
(141,1,'admin admin','webhook','webhook',13,'update','a:1:{s:6:\"events\";a:0:{}}','2026-02-04 10:27:10','197.15.116.204'),
(142,1,'admin admin','user','security',1,'login','a:1:{s:8:\"username\";s:5:\"admin\";}','2026-02-04 10:28:35','197.15.116.204'),
(143,1,'admin admin','webhook','webhook',13,'update','a:2:{s:6:\"events\";a:0:{}s:10:\"webhookUrl\";a:2:{i:0;s:79:\"http://173.249.20.244:5678/webhook/9c9fca76-713e-4398-a3b2-788865efcc74/webhook\";i:1;s:71:\"http://173.249.20.244:5678/webhook/d5834178-e5d3-4489-b867-f2e3889396fd\";}}','2026-02-04 10:31:15','197.15.116.204'),
(144,1,'admin admin','user','user',1,'update','a:1:{s:5:\"email\";a:2:{i:0;s:27:\"contact@navitrends-uk.store\";i:1;s:25:\"ameniboukottaya@gmail.com\";}}','2026-02-04 10:42:38','197.15.116.204'),
(145,1,'admin admin','lead','lead',33,'update','a:10:{s:5:\"owner\";a:2:{i:0;N;i:1;i:1;}s:5:\"title\";a:2:{i:0;N;i:1;s:17:\"BEN SALAH MOHAMED\";}s:6:\"fields\";a:5:{s:5:\"title\";a:2:{i:0;N;i:1;s:17:\"BEN SALAH MOHAMED\";}s:9:\"firstname\";a:2:{i:0;N;i:1;s:7:\"MOHAMED\";}s:8:\"lastname\";a:2:{i:0;N;i:1;s:9:\"BEN SALAH\";}s:5:\"email\";a:2:{i:0;N;i:1;s:23:\"mobensa.icb@hexabyte.tn\";}s:6:\"points\";a:2:{i:0;i:0;i:1;d:0;}}s:9:\"firstname\";a:2:{i:0;N;i:1;s:7:\"MOHAMED\";}s:8:\"lastname\";a:2:{i:0;N;i:1;s:9:\"BEN SALAH\";}s:5:\"email\";a:2:{i:0;N;i:1;s:23:\"mobensa.icb@hexabyte.tn\";}s:6:\"points\";a:2:{i:0;i:0;i:1;d:0;}s:14:\"dateIdentified\";a:2:{i:0;s:0:\"\";i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-04 10:51:02.245003\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}s:14:\"manipulated_by\";s:11:\"admin admin\";s:15:\"manipulator_key\";s:9:\"lead:lead\";}','2026-02-04 10:51:02','197.15.116.204'),
(146,1,'admin admin','lead','lead',33,'identified','a:0:{}','2026-02-04 10:51:02','197.15.116.204'),
(147,1,'admin admin','channel','message',1,'create','a:4:{s:8:\"channels\";a:2:{s:5:\"added\";a:0:{}s:7:\"removed\";a:0:{}}s:5:\"added\";a:1:{i:0;N;}s:4:\"name\";a:2:{i:0;N;i:1;s:16:\"MHAMED BEN SALAH\";}s:12:\"dateModified\";a:2:{i:0;N;i:1;s:25:\"2026-02-04T11:00:31+00:00\";}}','2026-02-04 11:00:31',''),
(148,0,'System','lead','lead',34,'create','a:1:{s:11:\"ipAddresses\";a:2:{i:0;s:0:\"\";i:1;s:13:\"167.94.138.38\";}}','2026-02-04 11:02:21','167.94.138.38'),
(149,0,'System','lead','lead',34,'ipadded','a:2:{i:0;s:0:\"\";i:1;s:13:\"167.94.138.38\";}','2026-02-04 11:02:21','167.94.138.38'),
(150,1,'admin admin','channel','message',1,'update','a:1:{s:9:\"publishUp\";a:2:{i:0;N;i:1;s:25:\"2026-02-04T12:06:00+00:00\";}}','2026-02-04 11:06:58',''),
(151,1,'admin admin','channel','message',1,'update','a:2:{s:11:\"isPublished\";a:2:{i:0;b:0;i:1;b:1;}s:9:\"publishUp\";a:2:{i:0;s:25:\"2026-02-04T12:06:00+00:00\";i:1;s:25:\"2026-02-04T11:00:00+00:00\";}}','2026-02-04 11:07:24',''),
(152,1,'admin admin','email','email',1,'update','a:1:{s:5:\"lists\";a:2:{i:0;a:0:{}i:1;a:0:{}}}','2026-02-04 11:10:34','197.15.116.204'),
(153,1,'admin admin','lead','lead',35,'update','a:9:{s:5:\"owner\";a:2:{i:0;N;i:1;i:1;}s:9:\"firstname\";a:2:{i:0;N;i:1;s:4:\"SAID\";}s:6:\"fields\";a:4:{s:9:\"firstname\";a:2:{i:0;N;i:1;s:4:\"SAID\";}s:8:\"lastname\";a:2:{i:0;N;i:1;s:4:\"SAMI\";}s:5:\"email\";a:2:{i:0;N;i:1;s:25:\"contact.origine@gmail.com\";}s:6:\"points\";a:2:{i:0;i:0;i:1;N;}}s:8:\"lastname\";a:2:{i:0;N;i:1;s:4:\"SAMI\";}s:5:\"email\";a:2:{i:0;N;i:1;s:25:\"contact.origine@gmail.com\";}s:6:\"points\";a:2:{i:0;i:0;i:1;N;}s:14:\"dateIdentified\";a:2:{i:0;s:0:\"\";i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-04 11:30:05.285414\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}s:14:\"manipulated_by\";s:11:\"admin admin\";s:15:\"manipulator_key\";s:9:\"lead:lead\";}','2026-02-04 11:30:05','197.15.116.204'),
(154,1,'admin admin','lead','lead',35,'identified','a:0:{}','2026-02-04 11:30:05','197.15.116.204'),
(155,1,'admin admin','lead','lead',36,'update','a:9:{s:5:\"owner\";a:2:{i:0;N;i:1;i:1;}s:5:\"title\";a:2:{i:0;N;i:1;s:5:\"Ranim\";}s:6:\"fields\";a:4:{s:5:\"title\";a:2:{i:0;N;i:1;s:5:\"Ranim\";}s:9:\"firstname\";a:2:{i:0;N;i:1;s:8:\"bouzikri\";}s:5:\"email\";a:2:{i:0;N;i:1;s:23:\"ranim09rannou@gmail.com\";}s:6:\"points\";a:2:{i:0;i:0;i:1;d:0;}}s:9:\"firstname\";a:2:{i:0;N;i:1;s:8:\"bouzikri\";}s:5:\"email\";a:2:{i:0;N;i:1;s:23:\"ranim09rannou@gmail.com\";}s:6:\"points\";a:2:{i:0;i:0;i:1;d:0;}s:14:\"dateIdentified\";a:2:{i:0;s:0:\"\";i:1;O:8:\"DateTime\":3:{s:4:\"date\";s:26:\"2026-02-04 11:34:26.040127\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}}s:14:\"manipulated_by\";s:11:\"admin admin\";s:15:\"manipulator_key\";s:9:\"lead:lead\";}','2026-02-04 11:34:26','197.15.116.204'),
(156,1,'admin admin','lead','lead',36,'identified','a:0:{}','2026-02-04 11:34:26','197.15.116.204'),
(157,1,'admin admin','lead','segment',1,'create','a:4:{s:4:\"name\";a:2:{i:0;N;i:1;s:8:\"Segment1\";}s:10:\"publicName\";a:2:{i:0;N;i:1;s:8:\"contacts\";}s:12:\"dateModified\";a:2:{i:0;N;i:1;s:25:\"2026-02-04T11:38:21+00:00\";}s:5:\"alias\";a:2:{i:0;N;i:1;s:8:\"segment1\";}}','2026-02-04 11:38:21','197.15.116.204');
/*!40000 ALTER TABLE `audit_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_asset_downloads`
--
DROP TABLE IF EXISTS `bak_asset_downloads`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_asset_downloads` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`asset_id` int(10) unsigned DEFAULT NULL,
`ip_id` int(10) unsigned DEFAULT NULL,
`lead_id` bigint(20) unsigned DEFAULT NULL,
`email_id` int(10) unsigned DEFAULT NULL,
`date_download` datetime NOT NULL,
`code` int(11) NOT NULL,
`referer` longtext DEFAULT NULL,
`tracking_id` varchar(191) NOT NULL,
`source` varchar(191) DEFAULT NULL,
`source_id` int(11) DEFAULT NULL,
`utm_campaign` varchar(191) DEFAULT NULL,
`utm_content` varchar(191) DEFAULT NULL,
`utm_medium` varchar(191) DEFAULT NULL,
`utm_source` varchar(191) DEFAULT NULL,
`utm_term` varchar(191) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `bak_asset_date_download` (`date_download`),
KEY `bak_download_tracking_search` (`tracking_id`),
KEY `bak_IDX_A6494C8FA03F5E9F` (`ip_id`),
KEY `bak_download_source_search` (`source`,`source_id`),
KEY `bak_IDX_A6494C8F55458D` (`lead_id`),
KEY `bak_IDX_A6494C8FA832C1C9` (`email_id`),
KEY `bak_IDX_A6494C8F5DA1941` (`asset_id`),
CONSTRAINT `bak_FK_A6494C8F55458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_A6494C8F5DA1941` FOREIGN KEY (`asset_id`) REFERENCES `bak_assets` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_A6494C8FA03F5E9F` FOREIGN KEY (`ip_id`) REFERENCES `bak_ip_addresses` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_A6494C8FA832C1C9` FOREIGN KEY (`email_id`) REFERENCES `bak_emails` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_asset_downloads`
--
LOCK TABLES `bak_asset_downloads` WRITE;
/*!40000 ALTER TABLE `bak_asset_downloads` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_asset_downloads` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_asset_projects_xref`
--
DROP TABLE IF EXISTS `bak_asset_projects_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_asset_projects_xref` (
`asset_id` int(10) unsigned NOT NULL,
`project_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`asset_id`,`project_id`),
KEY `bak_IDX_998AD577166D1F9C` (`project_id`),
CONSTRAINT `bak_FK_998AD577166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `bak_projects` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_998AD5775DA1941` FOREIGN KEY (`asset_id`) REFERENCES `bak_assets` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_asset_projects_xref`
--
LOCK TABLES `bak_asset_projects_xref` WRITE;
/*!40000 ALTER TABLE `bak_asset_projects_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_asset_projects_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_assets`
--
DROP TABLE IF EXISTS `bak_assets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_assets` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`title` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`alias` varchar(191) NOT NULL,
`storage_location` varchar(191) DEFAULT NULL,
`path` varchar(191) DEFAULT NULL,
`remote_path` longtext DEFAULT NULL,
`original_file_name` longtext DEFAULT NULL,
`lang` varchar(191) NOT NULL,
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`download_count` int(11) NOT NULL,
`unique_download_count` int(11) NOT NULL,
`revision` int(11) NOT NULL,
`extension` varchar(191) DEFAULT NULL,
`mime` varchar(191) DEFAULT NULL,
`size` int(11) DEFAULT NULL,
`disallow` tinyint(1) DEFAULT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `bak_asset_alias_search` (`alias`),
KEY `bak_IDX_79D17D8E12469DE2` (`category_id`),
CONSTRAINT `bak_FK_79D17D8E12469DE2` FOREIGN KEY (`category_id`) REFERENCES `bak_categories` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_assets`
--
LOCK TABLES `bak_assets` WRITE;
/*!40000 ALTER TABLE `bak_assets` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_assets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_audit_log`
--
DROP TABLE IF EXISTS `bak_audit_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_audit_log` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`user_name` varchar(191) NOT NULL,
`bundle` varchar(50) NOT NULL,
`object` varchar(50) NOT NULL,
`object_id` bigint(20) unsigned NOT NULL,
`action` varchar(50) NOT NULL,
`details` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`date_added` datetime NOT NULL,
`ip_address` varchar(45) NOT NULL,
PRIMARY KEY (`id`),
KEY `bak_timeline_search` (`bundle`,`object`,`action`,`object_id`),
KEY `bak_date_added_index` (`date_added`),
KEY `bak_object_search` (`object`,`object_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_audit_log`
--
LOCK TABLES `bak_audit_log` WRITE;
/*!40000 ALTER TABLE `bak_audit_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_audit_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_bundle_grapesjsbuilder`
--
DROP TABLE IF EXISTS `bak_bundle_grapesjsbuilder`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_bundle_grapesjsbuilder` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`email_id` int(10) unsigned DEFAULT NULL,
`custom_mjml` longtext DEFAULT NULL,
`draft_custom_mjml` longtext DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `bak_IDX_56A1EB07A832C1C9` (`email_id`),
CONSTRAINT `bak_FK_56A1EB07A832C1C9` FOREIGN KEY (`email_id`) REFERENCES `bak_emails` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_bundle_grapesjsbuilder`
--
LOCK TABLES `bak_bundle_grapesjsbuilder` WRITE;
/*!40000 ALTER TABLE `bak_bundle_grapesjsbuilder` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_bundle_grapesjsbuilder` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_cache_items`
--
DROP TABLE IF EXISTS `bak_cache_items`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_cache_items` (
`item_id` varbinary(255) NOT NULL,
`item_data` longblob NOT NULL,
`item_lifetime` int(10) unsigned DEFAULT NULL,
`item_time` int(10) unsigned NOT NULL,
PRIMARY KEY (`item_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_cache_items`
--
LOCK TABLES `bak_cache_items` WRITE;
/*!40000 ALTER TABLE `bak_cache_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_cache_items` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_campaign_events`
--
DROP TABLE IF EXISTS `bak_campaign_events`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_campaign_events` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`campaign_id` int(10) unsigned NOT NULL,
`parent_id` int(10) unsigned DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`type` varchar(50) NOT NULL,
`event_type` varchar(50) NOT NULL,
`event_order` int(11) NOT NULL,
`properties` longtext NOT NULL COMMENT '(DC2Type:array)',
`deleted` datetime DEFAULT NULL,
`trigger_date` datetime DEFAULT NULL,
`trigger_interval` int(11) DEFAULT NULL,
`trigger_interval_unit` varchar(1) DEFAULT NULL,
`trigger_hour` time DEFAULT NULL,
`trigger_restricted_start_hour` time DEFAULT NULL,
`trigger_restricted_stop_hour` time DEFAULT NULL,
`trigger_restricted_dow` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`trigger_window` int(11) DEFAULT NULL,
`trigger_mode` varchar(10) DEFAULT NULL,
`decision_path` varchar(191) DEFAULT NULL,
`temp_id` varchar(191) DEFAULT NULL,
`channel` varchar(191) DEFAULT NULL,
`channel_id` varchar(64) DEFAULT NULL,
`failed_count` int(11) NOT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `bak_campaign_event_channel` (`channel`,`channel_id`),
KEY `bak_campaign_event_search` (`type`,`event_type`),
KEY `bak_IDX_8EC42EE7F639F774` (`campaign_id`),
KEY `bak_campaign_event_type` (`event_type`),
KEY `bak_IDX_8EC42EE7727ACA70` (`parent_id`),
CONSTRAINT `bak_FK_8EC42EE7727ACA70` FOREIGN KEY (`parent_id`) REFERENCES `bak_campaign_events` (`id`),
CONSTRAINT `bak_FK_8EC42EE7F639F774` FOREIGN KEY (`campaign_id`) REFERENCES `bak_campaigns` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_campaign_events`
--
LOCK TABLES `bak_campaign_events` WRITE;
/*!40000 ALTER TABLE `bak_campaign_events` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_campaign_events` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_campaign_form_xref`
--
DROP TABLE IF EXISTS `bak_campaign_form_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_campaign_form_xref` (
`campaign_id` int(10) unsigned NOT NULL,
`form_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`campaign_id`,`form_id`),
KEY `bak_IDX_3048A8B25FF69B7D` (`form_id`),
CONSTRAINT `bak_FK_3048A8B25FF69B7D` FOREIGN KEY (`form_id`) REFERENCES `bak_forms` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_3048A8B2F639F774` FOREIGN KEY (`campaign_id`) REFERENCES `bak_campaigns` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_campaign_form_xref`
--
LOCK TABLES `bak_campaign_form_xref` WRITE;
/*!40000 ALTER TABLE `bak_campaign_form_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_campaign_form_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_campaign_lead_event_failed_log`
--
DROP TABLE IF EXISTS `bak_campaign_lead_event_failed_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_campaign_lead_event_failed_log` (
`log_id` bigint(20) unsigned NOT NULL,
`date_added` datetime NOT NULL,
`reason` longtext DEFAULT NULL,
PRIMARY KEY (`log_id`),
KEY `bak_campaign_event_failed_date` (`date_added`),
CONSTRAINT `bak_FK_E50614D2EA675D86` FOREIGN KEY (`log_id`) REFERENCES `bak_campaign_lead_event_log` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_campaign_lead_event_failed_log`
--
LOCK TABLES `bak_campaign_lead_event_failed_log` WRITE;
/*!40000 ALTER TABLE `bak_campaign_lead_event_failed_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_campaign_lead_event_failed_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_campaign_lead_event_log`
--
DROP TABLE IF EXISTS `bak_campaign_lead_event_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_campaign_lead_event_log` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`event_id` int(10) unsigned NOT NULL,
`lead_id` bigint(20) unsigned NOT NULL,
`campaign_id` int(10) unsigned DEFAULT NULL,
`ip_id` int(10) unsigned DEFAULT NULL,
`rotation` int(11) NOT NULL,
`date_triggered` datetime DEFAULT NULL,
`is_scheduled` tinyint(1) NOT NULL,
`trigger_date` datetime DEFAULT NULL,
`system_triggered` tinyint(1) NOT NULL,
`metadata` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`channel` varchar(191) DEFAULT NULL,
`channel_id` int(11) DEFAULT NULL,
`non_action_path_taken` tinyint(1) DEFAULT NULL,
`date_queued` datetime DEFAULT NULL,
`version` int(10) unsigned NOT NULL DEFAULT 1,
PRIMARY KEY (`id`),
UNIQUE KEY `bak_campaign_rotation` (`event_id`,`lead_id`,`rotation`),
KEY `bak_campaign_trigger_date_order` (`trigger_date`),
KEY `bak_campaign_event_upcoming_search` (`is_scheduled`,`lead_id`),
KEY `bak_IDX_B7420BA155458D` (`lead_id`),
KEY `bak_idx_scheduled_events` (`is_scheduled`,`event_id`,`trigger_date`),
KEY `bak_IDX_B7420BA1F639F774` (`campaign_id`),
KEY `bak_campaign_date_triggered` (`date_triggered`),
KEY `bak_campaign_event_schedule_counts` (`campaign_id`,`is_scheduled`,`trigger_date`),
KEY `bak_campaign_stats` (`campaign_id`,`date_triggered`,`event_id`,`non_action_path_taken`),
KEY `bak_IDX_B7420BA1A03F5E9F` (`ip_id`),
KEY `bak_campaign_actions` (`campaign_id`,`event_id`,`date_triggered`),
KEY `bak_IDX_B7420BA171F7E88B` (`event_id`),
KEY `bak_campaign_log_channel` (`channel`,`channel_id`,`lead_id`),
KEY `bak_campaign_leads` (`lead_id`,`campaign_id`,`rotation`),
CONSTRAINT `bak_FK_B7420BA155458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_B7420BA171F7E88B` FOREIGN KEY (`event_id`) REFERENCES `bak_campaign_events` (`id`),
CONSTRAINT `bak_FK_B7420BA1A03F5E9F` FOREIGN KEY (`ip_id`) REFERENCES `bak_ip_addresses` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_B7420BA1F639F774` FOREIGN KEY (`campaign_id`) REFERENCES `bak_campaigns` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_campaign_lead_event_log`
--
LOCK TABLES `bak_campaign_lead_event_log` WRITE;
/*!40000 ALTER TABLE `bak_campaign_lead_event_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_campaign_lead_event_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_campaign_leadlist_xref`
--
DROP TABLE IF EXISTS `bak_campaign_leadlist_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_campaign_leadlist_xref` (
`campaign_id` int(10) unsigned NOT NULL,
`leadlist_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`campaign_id`,`leadlist_id`),
KEY `bak_IDX_6480052EB9FC8874` (`leadlist_id`),
CONSTRAINT `bak_FK_6480052EB9FC8874` FOREIGN KEY (`leadlist_id`) REFERENCES `bak_lead_lists` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_6480052EF639F774` FOREIGN KEY (`campaign_id`) REFERENCES `bak_campaigns` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_campaign_leadlist_xref`
--
LOCK TABLES `bak_campaign_leadlist_xref` WRITE;
/*!40000 ALTER TABLE `bak_campaign_leadlist_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_campaign_leadlist_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_campaign_leads`
--
DROP TABLE IF EXISTS `bak_campaign_leads`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_campaign_leads` (
`campaign_id` int(10) unsigned NOT NULL,
`lead_id` bigint(20) unsigned NOT NULL,
`date_added` datetime NOT NULL,
`manually_removed` tinyint(1) NOT NULL,
`manually_added` tinyint(1) NOT NULL,
`date_last_exited` datetime DEFAULT NULL,
`rotation` int(11) NOT NULL,
PRIMARY KEY (`campaign_id`,`lead_id`),
KEY `bak_campaign_leads_date_added` (`date_added`),
KEY `bak_campaign_leads_date_exited` (`date_last_exited`),
KEY `bak_campaign_leads` (`campaign_id`,`manually_removed`,`lead_id`,`rotation`),
KEY `bak_IDX_5995213D55458D` (`lead_id`),
CONSTRAINT `bak_FK_5995213D55458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_5995213DF639F774` FOREIGN KEY (`campaign_id`) REFERENCES `bak_campaigns` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_campaign_leads`
--
LOCK TABLES `bak_campaign_leads` WRITE;
/*!40000 ALTER TABLE `bak_campaign_leads` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_campaign_leads` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_campaign_projects_xref`
--
DROP TABLE IF EXISTS `bak_campaign_projects_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_campaign_projects_xref` (
`campaign_id` int(10) unsigned NOT NULL,
`project_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`campaign_id`,`project_id`),
KEY `bak_IDX_9BC3A16C166D1F9C` (`project_id`),
CONSTRAINT `bak_FK_9BC3A16C166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `bak_projects` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_9BC3A16CF639F774` FOREIGN KEY (`campaign_id`) REFERENCES `bak_campaigns` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_campaign_projects_xref`
--
LOCK TABLES `bak_campaign_projects_xref` WRITE;
/*!40000 ALTER TABLE `bak_campaign_projects_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_campaign_projects_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_campaign_summary`
--
DROP TABLE IF EXISTS `bak_campaign_summary`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_campaign_summary` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`campaign_id` int(10) unsigned DEFAULT NULL,
`event_id` int(10) unsigned NOT NULL,
`date_triggered` datetime DEFAULT NULL COMMENT '(DC2Type:datetime_immutable)',
`scheduled_count` int(11) NOT NULL,
`triggered_count` int(11) NOT NULL,
`non_action_path_taken_count` int(11) NOT NULL,
`failed_count` int(11) NOT NULL,
`log_counts_processed` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `bak_campaign_event_date_triggered` (`campaign_id`,`event_id`,`date_triggered`),
KEY `bak_IDX_6692FA4F71F7E88B` (`event_id`),
KEY `bak_IDX_6692FA4FF639F774` (`campaign_id`),
CONSTRAINT `bak_FK_6692FA4F71F7E88B` FOREIGN KEY (`event_id`) REFERENCES `bak_campaign_events` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_6692FA4FF639F774` FOREIGN KEY (`campaign_id`) REFERENCES `bak_campaigns` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_campaign_summary`
--
LOCK TABLES `bak_campaign_summary` WRITE;
/*!40000 ALTER TABLE `bak_campaign_summary` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_campaign_summary` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_campaigns`
--
DROP TABLE IF EXISTS `bak_campaigns`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_campaigns` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`canvas_settings` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`allow_restart` tinyint(1) NOT NULL,
`deleted` datetime DEFAULT NULL,
`version` int(10) unsigned NOT NULL DEFAULT 1,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `bak_IDX_E373747012469DE2` (`category_id`),
CONSTRAINT `bak_FK_E373747012469DE2` FOREIGN KEY (`category_id`) REFERENCES `bak_categories` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_campaigns`
--
LOCK TABLES `bak_campaigns` WRITE;
/*!40000 ALTER TABLE `bak_campaigns` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_campaigns` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_categories`
--
DROP TABLE IF EXISTS `bak_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_categories` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`title` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`alias` varchar(191) NOT NULL,
`color` varchar(7) DEFAULT NULL,
`bundle` varchar(50) NOT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `bak_category_alias_search` (`alias`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_categories`
--
LOCK TABLES `bak_categories` WRITE;
/*!40000 ALTER TABLE `bak_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_channel_url_trackables`
--
DROP TABLE IF EXISTS `bak_channel_url_trackables`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_channel_url_trackables` (
`channel_id` int(11) NOT NULL,
`redirect_id` bigint(20) unsigned NOT NULL,
`channel` varchar(191) NOT NULL,
`hits` int(11) NOT NULL,
`unique_hits` int(11) NOT NULL,
PRIMARY KEY (`redirect_id`,`channel_id`),
KEY `bak_channel_url_trackable_search` (`channel`,`channel_id`),
CONSTRAINT `bak_FK_2F81A41DB42D874D` FOREIGN KEY (`redirect_id`) REFERENCES `bak_page_redirects` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_channel_url_trackables`
--
LOCK TABLES `bak_channel_url_trackables` WRITE;
/*!40000 ALTER TABLE `bak_channel_url_trackables` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_channel_url_trackables` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_companies`
--
DROP TABLE IF EXISTS `bak_companies`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_companies` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`owner_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`social_cache` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`score` int(11) DEFAULT NULL,
`companyemail` varchar(191) DEFAULT NULL,
`companyaddress1` varchar(191) DEFAULT NULL,
`companyaddress2` varchar(191) DEFAULT NULL,
`companyphone` varchar(191) DEFAULT NULL,
`companycity` varchar(191) DEFAULT NULL,
`companystate` varchar(191) DEFAULT NULL,
`companyzipcode` varchar(191) DEFAULT NULL,
`companycountry` varchar(191) DEFAULT NULL,
`companyname` varchar(191) DEFAULT NULL,
`companywebsite` varchar(191) DEFAULT NULL,
`companyindustry` varchar(191) DEFAULT NULL,
`companydescription` longtext DEFAULT NULL,
`companynumber_of_employees` double DEFAULT NULL,
`companyfax` varchar(191) DEFAULT NULL,
`companyannual_revenue` double DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `bak_companyfax_search` (`companyfax`),
KEY `bak_company_match` (`companyname`,`companycity`,`companycountry`,`companystate`),
KEY `bak_companyannual_revenue_search` (`companyannual_revenue`),
KEY `bak_IDX_8244AA3A7E3C61F9` (`owner_id`),
KEY `bak_company_filter` (`companyname`,`companyemail`),
KEY `bak_companynumber_of_employees_search` (`companynumber_of_employees`),
CONSTRAINT `bak_FK_8244AA3A7E3C61F9` FOREIGN KEY (`owner_id`) REFERENCES `bak_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_companies`
--
LOCK TABLES `bak_companies` WRITE;
/*!40000 ALTER TABLE `bak_companies` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_companies` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_companies_leads`
--
DROP TABLE IF EXISTS `bak_companies_leads`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_companies_leads` (
`company_id` int(11) NOT NULL,
`lead_id` bigint(20) unsigned NOT NULL,
`date_added` datetime NOT NULL,
`is_primary` tinyint(1) DEFAULT NULL,
PRIMARY KEY (`company_id`,`lead_id`),
KEY `bak_IDX_F4190AB655458D` (`lead_id`),
CONSTRAINT `bak_FK_F4190AB655458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_F4190AB6979B1AD6` FOREIGN KEY (`company_id`) REFERENCES `bak_companies` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_companies_leads`
--
LOCK TABLES `bak_companies_leads` WRITE;
/*!40000 ALTER TABLE `bak_companies_leads` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_companies_leads` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_company_projects_xref`
--
DROP TABLE IF EXISTS `bak_company_projects_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_company_projects_xref` (
`company_id` int(11) NOT NULL,
`project_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`company_id`,`project_id`),
KEY `bak_IDX_26DD2E6B166D1F9C` (`project_id`),
CONSTRAINT `bak_FK_26DD2E6B166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `bak_projects` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_26DD2E6B979B1AD6` FOREIGN KEY (`company_id`) REFERENCES `bak_companies` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_company_projects_xref`
--
LOCK TABLES `bak_company_projects_xref` WRITE;
/*!40000 ALTER TABLE `bak_company_projects_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_company_projects_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_contact_export_scheduler`
--
DROP TABLE IF EXISTS `bak_contact_export_scheduler`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_contact_export_scheduler` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned DEFAULT NULL,
`scheduled_datetime` datetime NOT NULL COMMENT '(DC2Type:datetime_immutable)',
`data` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
PRIMARY KEY (`id`),
KEY `bak_IDX_AC0A03CA76ED395` (`user_id`),
CONSTRAINT `bak_FK_AC0A03CA76ED395` FOREIGN KEY (`user_id`) REFERENCES `bak_users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_contact_export_scheduler`
--
LOCK TABLES `bak_contact_export_scheduler` WRITE;
/*!40000 ALTER TABLE `bak_contact_export_scheduler` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_contact_export_scheduler` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_contact_merge_records`
--
DROP TABLE IF EXISTS `bak_contact_merge_records`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_contact_merge_records` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`contact_id` bigint(20) unsigned NOT NULL,
`date_added` datetime NOT NULL,
`merged_id` int(11) NOT NULL,
`name` varchar(191) NOT NULL,
PRIMARY KEY (`id`),
KEY `bak_contact_merge_ids` (`merged_id`),
KEY `bak_IDX_D9B4F2BFE7A1254A` (`contact_id`),
KEY `bak_contact_merge_date_added` (`date_added`),
CONSTRAINT `bak_FK_D9B4F2BFE7A1254A` FOREIGN KEY (`contact_id`) REFERENCES `bak_leads` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_contact_merge_records`
--
LOCK TABLES `bak_contact_merge_records` WRITE;
/*!40000 ALTER TABLE `bak_contact_merge_records` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_contact_merge_records` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_dynamic_content`
--
DROP TABLE IF EXISTS `bak_dynamic_content`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_dynamic_content` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`translation_parent_id` int(10) unsigned DEFAULT NULL,
`variant_parent_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`type` varchar(191) NOT NULL DEFAULT 'html',
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`sent_count` int(11) NOT NULL,
`content` longtext DEFAULT NULL,
`utm_tags` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '(DC2Type:json)' CHECK (json_valid(`utm_tags`)),
`lang` varchar(191) NOT NULL,
`variant_settings` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`variant_start_date` datetime DEFAULT NULL,
`filters` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`is_campaign_based` tinyint(1) NOT NULL DEFAULT 1,
`slot_name` varchar(191) DEFAULT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `bak_slot_name_index` (`slot_name`),
KEY `bak_IDX_20B9DEB29091A2FB` (`translation_parent_id`),
KEY `bak_IDX_20B9DEB291861123` (`variant_parent_id`),
KEY `bak_is_campaign_based_index` (`is_campaign_based`),
KEY `bak_IDX_20B9DEB212469DE2` (`category_id`),
CONSTRAINT `bak_FK_20B9DEB212469DE2` FOREIGN KEY (`category_id`) REFERENCES `bak_categories` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_20B9DEB29091A2FB` FOREIGN KEY (`translation_parent_id`) REFERENCES `bak_dynamic_content` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_20B9DEB291861123` FOREIGN KEY (`variant_parent_id`) REFERENCES `bak_dynamic_content` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_dynamic_content`
--
LOCK TABLES `bak_dynamic_content` WRITE;
/*!40000 ALTER TABLE `bak_dynamic_content` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_dynamic_content` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_dynamic_content_lead_data`
--
DROP TABLE IF EXISTS `bak_dynamic_content_lead_data`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_dynamic_content_lead_data` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`lead_id` bigint(20) unsigned NOT NULL,
`dynamic_content_id` int(10) unsigned DEFAULT NULL,
`date_added` datetime DEFAULT NULL,
`slot` longtext NOT NULL,
PRIMARY KEY (`id`),
KEY `bak_IDX_515B221B55458D` (`lead_id`),
KEY `bak_IDX_515B221BD9D0CD7` (`dynamic_content_id`),
CONSTRAINT `bak_FK_515B221B55458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_515B221BD9D0CD7` FOREIGN KEY (`dynamic_content_id`) REFERENCES `bak_dynamic_content` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_dynamic_content_lead_data`
--
LOCK TABLES `bak_dynamic_content_lead_data` WRITE;
/*!40000 ALTER TABLE `bak_dynamic_content_lead_data` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_dynamic_content_lead_data` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_dynamic_content_projects_xref`
--
DROP TABLE IF EXISTS `bak_dynamic_content_projects_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_dynamic_content_projects_xref` (
`dynamic_content_id` int(10) unsigned NOT NULL,
`project_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`dynamic_content_id`,`project_id`),
KEY `bak_IDX_B9D1B7166D1F9C` (`project_id`),
CONSTRAINT `bak_FK_B9D1B7166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `bak_projects` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_B9D1B7D9D0CD7` FOREIGN KEY (`dynamic_content_id`) REFERENCES `bak_dynamic_content` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_dynamic_content_projects_xref`
--
LOCK TABLES `bak_dynamic_content_projects_xref` WRITE;
/*!40000 ALTER TABLE `bak_dynamic_content_projects_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_dynamic_content_projects_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_dynamic_content_stats`
--
DROP TABLE IF EXISTS `bak_dynamic_content_stats`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_dynamic_content_stats` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`dynamic_content_id` int(10) unsigned DEFAULT NULL,
`lead_id` bigint(20) unsigned DEFAULT NULL,
`date_sent` datetime NOT NULL,
`source` varchar(191) DEFAULT NULL,
`source_id` int(11) DEFAULT NULL,
`tokens` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`sent_count` int(11) DEFAULT NULL,
`last_sent` datetime DEFAULT NULL,
`sent_details` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
PRIMARY KEY (`id`),
KEY `bak_stat_dynamic_content_date_sent` (`date_sent`),
KEY `bak_IDX_E48FBF80D9D0CD7` (`dynamic_content_id`),
KEY `bak_stat_dynamic_content_source_search` (`source`,`source_id`),
KEY `bak_IDX_E48FBF8055458D` (`lead_id`),
KEY `bak_stat_dynamic_content_search` (`dynamic_content_id`,`lead_id`),
CONSTRAINT `bak_FK_E48FBF8055458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_E48FBF80D9D0CD7` FOREIGN KEY (`dynamic_content_id`) REFERENCES `bak_dynamic_content` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_dynamic_content_stats`
--
LOCK TABLES `bak_dynamic_content_stats` WRITE;
/*!40000 ALTER TABLE `bak_dynamic_content_stats` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_dynamic_content_stats` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_email_assets_xref`
--
DROP TABLE IF EXISTS `bak_email_assets_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_email_assets_xref` (
`email_id` int(10) unsigned NOT NULL,
`asset_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`email_id`,`asset_id`),
KEY `bak_IDX_CA3157785DA1941` (`asset_id`),
CONSTRAINT `bak_FK_CA3157785DA1941` FOREIGN KEY (`asset_id`) REFERENCES `bak_assets` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_CA315778A832C1C9` FOREIGN KEY (`email_id`) REFERENCES `bak_emails` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_email_assets_xref`
--
LOCK TABLES `bak_email_assets_xref` WRITE;
/*!40000 ALTER TABLE `bak_email_assets_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_email_assets_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_email_copies`
--
DROP TABLE IF EXISTS `bak_email_copies`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_email_copies` (
`id` varchar(32) NOT NULL,
`date_created` datetime NOT NULL,
`body` longtext DEFAULT NULL,
`body_text` longtext DEFAULT NULL,
`subject` longtext DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_email_copies`
--
LOCK TABLES `bak_email_copies` WRITE;
/*!40000 ALTER TABLE `bak_email_copies` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_email_copies` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_email_list_excluded`
--
DROP TABLE IF EXISTS `bak_email_list_excluded`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_email_list_excluded` (
`email_id` int(10) unsigned NOT NULL,
`leadlist_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`email_id`,`leadlist_id`),
KEY `bak_IDX_3D3C217BB9FC8874` (`leadlist_id`),
CONSTRAINT `bak_FK_3D3C217BA832C1C9` FOREIGN KEY (`email_id`) REFERENCES `bak_emails` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_3D3C217BB9FC8874` FOREIGN KEY (`leadlist_id`) REFERENCES `bak_lead_lists` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_email_list_excluded`
--
LOCK TABLES `bak_email_list_excluded` WRITE;
/*!40000 ALTER TABLE `bak_email_list_excluded` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_email_list_excluded` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_email_list_xref`
--
DROP TABLE IF EXISTS `bak_email_list_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_email_list_xref` (
`email_id` int(10) unsigned NOT NULL,
`leadlist_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`email_id`,`leadlist_id`),
KEY `bak_IDX_2E24F01CB9FC8874` (`leadlist_id`),
CONSTRAINT `bak_FK_2E24F01CA832C1C9` FOREIGN KEY (`email_id`) REFERENCES `bak_emails` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_2E24F01CB9FC8874` FOREIGN KEY (`leadlist_id`) REFERENCES `bak_lead_lists` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_email_list_xref`
--
LOCK TABLES `bak_email_list_xref` WRITE;
/*!40000 ALTER TABLE `bak_email_list_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_email_list_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_email_projects_xref`
--
DROP TABLE IF EXISTS `bak_email_projects_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_email_projects_xref` (
`email_id` int(10) unsigned NOT NULL,
`project_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`email_id`,`project_id`),
KEY `bak_IDX_A8C81FBE166D1F9C` (`project_id`),
CONSTRAINT `bak_FK_A8C81FBE166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `bak_projects` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_A8C81FBEA832C1C9` FOREIGN KEY (`email_id`) REFERENCES `bak_emails` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_email_projects_xref`
--
LOCK TABLES `bak_email_projects_xref` WRITE;
/*!40000 ALTER TABLE `bak_email_projects_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_email_projects_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_email_stat_replies`
--
DROP TABLE IF EXISTS `bak_email_stat_replies`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_email_stat_replies` (
`id` char(36) NOT NULL COMMENT '(DC2Type:guid)',
`stat_id` bigint(20) unsigned NOT NULL,
`date_replied` datetime NOT NULL,
`message_id` varchar(191) NOT NULL,
PRIMARY KEY (`id`),
KEY `bak_date_email_replied` (`date_replied`),
KEY `bak_IDX_11E9F6E09502F0B` (`stat_id`),
KEY `bak_email_replies` (`stat_id`,`message_id`),
CONSTRAINT `bak_FK_11E9F6E09502F0B` FOREIGN KEY (`stat_id`) REFERENCES `bak_email_stats` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_email_stat_replies`
--
LOCK TABLES `bak_email_stat_replies` WRITE;
/*!40000 ALTER TABLE `bak_email_stat_replies` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_email_stat_replies` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_email_stats`
--
DROP TABLE IF EXISTS `bak_email_stats`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_email_stats` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`email_id` int(10) unsigned DEFAULT NULL,
`lead_id` bigint(20) unsigned DEFAULT NULL,
`list_id` int(10) unsigned DEFAULT NULL,
`ip_id` int(10) unsigned DEFAULT NULL,
`copy_id` varchar(32) DEFAULT NULL,
`email_address` varchar(191) NOT NULL,
`date_sent` datetime NOT NULL,
`is_read` tinyint(1) NOT NULL,
`is_failed` tinyint(1) NOT NULL,
`viewed_in_browser` tinyint(1) NOT NULL,
`date_read` datetime DEFAULT NULL,
`tracking_hash` varchar(191) DEFAULT NULL,
`retry_count` int(11) DEFAULT NULL,
`source` varchar(191) DEFAULT NULL,
`source_id` int(11) DEFAULT NULL,
`tokens` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`open_count` int(11) DEFAULT NULL,
`last_opened` datetime DEFAULT NULL,
`open_details` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`generated_sent_date` date GENERATED ALWAYS AS (concat(year(`date_sent`),'-',lpad(month(`date_sent`),2,'0'),'-',lpad(dayofmonth(`date_sent`),2,'0'))) VIRTUAL COMMENT '(DC2Type:generated)',
PRIMARY KEY (`id`),
KEY `bak_stat_email_search` (`email_id`,`lead_id`),
KEY `bak_IDX_CA0A26253DAE168B` (`list_id`),
KEY `bak_stat_email_lead_id_date_sent` (`lead_id`,`date_sent`),
KEY `bak_email_date_sent` (`date_sent`),
KEY `bak_stat_email_hash_search` (`tracking_hash`),
KEY `bak_stat_email_failed_search` (`is_failed`),
KEY `bak_generated_sent_date_email_id` (`generated_sent_date`,`email_id`),
KEY `bak_IDX_CA0A2625A03F5E9F` (`ip_id`),
KEY `bak_IDX_CA0A2625A832C1C9` (`email_id`),
KEY `bak_email_date_read_lead` (`date_read`,`lead_id`),
KEY `bak_stat_email_source_search` (`source`,`source_id`),
KEY `bak_is_read_date_sent` (`is_read`,`date_sent`),
KEY `bak_stat_email_search2` (`lead_id`,`email_id`),
KEY `bak_IDX_CA0A2625A8752772` (`copy_id`),
KEY `bak_stat_email_email_id_is_read` (`email_id`,`is_read`),
KEY `bak_IDX_CA0A262555458D` (`lead_id`),
CONSTRAINT `bak_FK_CA0A26253DAE168B` FOREIGN KEY (`list_id`) REFERENCES `bak_lead_lists` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_CA0A262555458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_CA0A2625A03F5E9F` FOREIGN KEY (`ip_id`) REFERENCES `bak_ip_addresses` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_CA0A2625A832C1C9` FOREIGN KEY (`email_id`) REFERENCES `bak_emails` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_CA0A2625A8752772` FOREIGN KEY (`copy_id`) REFERENCES `bak_email_copies` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_email_stats`
--
LOCK TABLES `bak_email_stats` WRITE;
/*!40000 ALTER TABLE `bak_email_stats` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_email_stats` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_email_stats_devices`
--
DROP TABLE IF EXISTS `bak_email_stats_devices`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_email_stats_devices` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`device_id` bigint(20) unsigned DEFAULT NULL,
`stat_id` bigint(20) unsigned DEFAULT NULL,
`ip_id` int(10) unsigned DEFAULT NULL,
`date_opened` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `bak_IDX_7A8A1C6FA03F5E9F` (`ip_id`),
KEY `bak_date_opened_search` (`date_opened`),
KEY `bak_IDX_7A8A1C6F94A4C7D4` (`device_id`),
KEY `bak_IDX_7A8A1C6F9502F0B` (`stat_id`),
CONSTRAINT `bak_FK_7A8A1C6F94A4C7D4` FOREIGN KEY (`device_id`) REFERENCES `bak_lead_devices` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_7A8A1C6F9502F0B` FOREIGN KEY (`stat_id`) REFERENCES `bak_email_stats` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_7A8A1C6FA03F5E9F` FOREIGN KEY (`ip_id`) REFERENCES `bak_ip_addresses` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_email_stats_devices`
--
LOCK TABLES `bak_email_stats_devices` WRITE;
/*!40000 ALTER TABLE `bak_email_stats_devices` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_email_stats_devices` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_emails`
--
DROP TABLE IF EXISTS `bak_emails`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_emails` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`translation_parent_id` int(10) unsigned DEFAULT NULL,
`variant_parent_id` int(10) unsigned DEFAULT NULL,
`unsubscribeform_id` int(10) unsigned DEFAULT NULL,
`preference_center_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`subject` longtext DEFAULT NULL,
`preheader_text` varchar(191) DEFAULT NULL,
`from_address` varchar(191) DEFAULT NULL,
`from_name` varchar(191) DEFAULT NULL,
`reply_to_address` varchar(191) DEFAULT NULL,
`bcc_address` varchar(191) DEFAULT NULL,
`use_owner_as_mailer` tinyint(1) DEFAULT NULL,
`template` varchar(191) DEFAULT NULL,
`content` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`utm_tags` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`plain_text` longtext DEFAULT NULL,
`custom_html` longtext DEFAULT NULL,
`email_type` longtext DEFAULT NULL,
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`continue_sending` tinyint(1) NOT NULL DEFAULT 0,
`read_count` int(11) NOT NULL,
`sent_count` int(11) NOT NULL,
`variant_sent_count` int(11) NOT NULL,
`variant_read_count` int(11) NOT NULL,
`revision` int(11) NOT NULL,
`lang` varchar(191) NOT NULL,
`variant_settings` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`variant_start_date` datetime DEFAULT NULL,
`dynamic_content` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`headers` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT '(DC2Type:json)' CHECK (json_valid(`headers`)),
`public_preview` tinyint(1) DEFAULT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `bak_IDX_4C81E8522DC494F6` (`unsubscribeform_id`),
KEY `bak_IDX_4C81E85212469DE2` (`category_id`),
KEY `bak_IDX_4C81E852834F9C5B` (`preference_center_id`),
KEY `bak_IDX_4C81E8529091A2FB` (`translation_parent_id`),
KEY `bak_IDX_4C81E85291861123` (`variant_parent_id`),
CONSTRAINT `bak_FK_4C81E85212469DE2` FOREIGN KEY (`category_id`) REFERENCES `bak_categories` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_4C81E8522DC494F6` FOREIGN KEY (`unsubscribeform_id`) REFERENCES `bak_forms` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_4C81E852834F9C5B` FOREIGN KEY (`preference_center_id`) REFERENCES `bak_pages` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_4C81E8529091A2FB` FOREIGN KEY (`translation_parent_id`) REFERENCES `bak_emails` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_4C81E85291861123` FOREIGN KEY (`variant_parent_id`) REFERENCES `bak_emails` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_emails`
--
LOCK TABLES `bak_emails` WRITE;
/*!40000 ALTER TABLE `bak_emails` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_emails` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_emails_draft`
--
DROP TABLE IF EXISTS `bak_emails_draft`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_emails_draft` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`email_id` int(10) unsigned NOT NULL,
`html` longtext DEFAULT NULL,
`template` varchar(191) DEFAULT NULL,
`public_preview` tinyint(1) NOT NULL DEFAULT 1,
PRIMARY KEY (`id`),
UNIQUE KEY `bak_UNIQ_B9C3FA10A832C1C9` (`email_id`),
CONSTRAINT `bak_FK_B9C3FA10A832C1C9` FOREIGN KEY (`email_id`) REFERENCES `bak_emails` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_emails_draft`
--
LOCK TABLES `bak_emails_draft` WRITE;
/*!40000 ALTER TABLE `bak_emails_draft` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_emails_draft` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_focus`
--
DROP TABLE IF EXISTS `bak_focus`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_focus` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`focus_type` varchar(191) NOT NULL,
`style` varchar(191) NOT NULL,
`website` varchar(191) DEFAULT NULL,
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`properties` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`utm_tags` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`form_id` int(11) DEFAULT NULL,
`cache` longtext DEFAULT NULL,
`html_mode` varchar(191) DEFAULT NULL,
`editor` longtext DEFAULT NULL,
`html` longtext DEFAULT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `bak_focus_style` (`style`),
KEY `bak_focus_form` (`form_id`),
KEY `bak_IDX_62C04AE912469DE2` (`category_id`),
KEY `bak_focus_name` (`name`),
KEY `bak_focus_type` (`focus_type`),
CONSTRAINT `bak_FK_62C04AE912469DE2` FOREIGN KEY (`category_id`) REFERENCES `bak_categories` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_focus`
--
LOCK TABLES `bak_focus` WRITE;
/*!40000 ALTER TABLE `bak_focus` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_focus` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_focus_projects_xref`
--
DROP TABLE IF EXISTS `bak_focus_projects_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_focus_projects_xref` (
`focus_id` int(10) unsigned NOT NULL,
`project_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`focus_id`,`project_id`),
KEY `bak_IDX_8B99D3D7166D1F9C` (`project_id`),
CONSTRAINT `bak_FK_8B99D3D7166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `bak_projects` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_8B99D3D751804B42` FOREIGN KEY (`focus_id`) REFERENCES `bak_focus` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_focus_projects_xref`
--
LOCK TABLES `bak_focus_projects_xref` WRITE;
/*!40000 ALTER TABLE `bak_focus_projects_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_focus_projects_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_focus_stats`
--
DROP TABLE IF EXISTS `bak_focus_stats`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_focus_stats` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`focus_id` int(10) unsigned NOT NULL,
`lead_id` bigint(20) unsigned DEFAULT NULL,
`type` varchar(191) NOT NULL,
`type_id` int(11) DEFAULT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `bak_focus_date_added` (`date_added`),
KEY `bak_focus_type` (`type`),
KEY `bak_focus_type_id` (`type`,`type_id`),
KEY `bak_IDX_C36970DC51804B42` (`focus_id`),
KEY `bak_IDX_C36970DC55458D` (`lead_id`),
CONSTRAINT `bak_FK_C36970DC51804B42` FOREIGN KEY (`focus_id`) REFERENCES `bak_focus` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_C36970DC55458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_focus_stats`
--
LOCK TABLES `bak_focus_stats` WRITE;
/*!40000 ALTER TABLE `bak_focus_stats` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_focus_stats` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_form_actions`
--
DROP TABLE IF EXISTS `bak_form_actions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_form_actions` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`form_id` int(10) unsigned NOT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`type` varchar(50) NOT NULL,
`action_order` int(11) NOT NULL,
`properties` longtext NOT NULL COMMENT '(DC2Type:array)',
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `bak_form_action_type_search` (`type`),
KEY `bak_IDX_342491D45FF69B7D` (`form_id`),
CONSTRAINT `bak_FK_342491D45FF69B7D` FOREIGN KEY (`form_id`) REFERENCES `bak_forms` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_form_actions`
--
LOCK TABLES `bak_form_actions` WRITE;
/*!40000 ALTER TABLE `bak_form_actions` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_form_actions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_form_fields`
--
DROP TABLE IF EXISTS `bak_form_fields`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_form_fields` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`form_id` int(10) unsigned NOT NULL,
`label` longtext NOT NULL,
`show_label` tinyint(1) DEFAULT NULL,
`alias` varchar(191) NOT NULL,
`type` varchar(191) NOT NULL,
`is_custom` tinyint(1) NOT NULL,
`custom_parameters` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`default_value` longtext DEFAULT NULL,
`is_required` tinyint(1) NOT NULL,
`validation_message` longtext DEFAULT NULL,
`help_message` longtext DEFAULT NULL,
`field_order` int(11) DEFAULT NULL,
`properties` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`validation` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '(DC2Type:json)' CHECK (json_valid(`validation`)),
`parent_id` varchar(191) DEFAULT NULL,
`conditions` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '(DC2Type:json)' CHECK (json_valid(`conditions`)),
`label_attr` varchar(191) DEFAULT NULL,
`input_attr` varchar(191) DEFAULT NULL,
`container_attr` varchar(191) DEFAULT NULL,
`lead_field` varchar(191) DEFAULT NULL,
`save_result` tinyint(1) DEFAULT NULL,
`is_auto_fill` tinyint(1) DEFAULT NULL,
`is_read_only` tinyint(1) NOT NULL DEFAULT 0,
`show_when_value_exists` tinyint(1) DEFAULT NULL,
`show_after_x_submissions` int(11) DEFAULT NULL,
`always_display` tinyint(1) DEFAULT NULL,
`mapped_object` varchar(191) DEFAULT NULL,
`mapped_field` varchar(191) DEFAULT NULL,
`field_width` varchar(50) NOT NULL DEFAULT '100%',
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `bak_form_field_type_search` (`type`),
KEY `bak_IDX_7C0B37265FF69B7D` (`form_id`),
CONSTRAINT `bak_FK_7C0B37265FF69B7D` FOREIGN KEY (`form_id`) REFERENCES `bak_forms` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_form_fields`
--
LOCK TABLES `bak_form_fields` WRITE;
/*!40000 ALTER TABLE `bak_form_fields` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_form_fields` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_form_projects_xref`
--
DROP TABLE IF EXISTS `bak_form_projects_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_form_projects_xref` (
`form_id` int(10) unsigned NOT NULL,
`project_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`form_id`,`project_id`),
KEY `bak_IDX_F9294B29166D1F9C` (`project_id`),
CONSTRAINT `bak_FK_F9294B29166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `bak_projects` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_F9294B295FF69B7D` FOREIGN KEY (`form_id`) REFERENCES `bak_forms` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_form_projects_xref`
--
LOCK TABLES `bak_form_projects_xref` WRITE;
/*!40000 ALTER TABLE `bak_form_projects_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_form_projects_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_form_submissions`
--
DROP TABLE IF EXISTS `bak_form_submissions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_form_submissions` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`form_id` int(10) unsigned NOT NULL,
`ip_id` int(10) unsigned DEFAULT NULL,
`lead_id` bigint(20) unsigned DEFAULT NULL,
`page_id` int(10) unsigned DEFAULT NULL,
`tracking_id` varchar(191) DEFAULT NULL,
`date_submitted` datetime NOT NULL,
`referer` longtext NOT NULL,
PRIMARY KEY (`id`),
KEY `bak_IDX_C80AF9E6C4663E4` (`page_id`),
KEY `bak_IDX_C80AF9E65FF69B7D` (`form_id`),
KEY `bak_form_submission_tracking_search` (`tracking_id`),
KEY `bak_IDX_C80AF9E6A03F5E9F` (`ip_id`),
KEY `bak_form_date_submitted` (`date_submitted`),
KEY `bak_IDX_C80AF9E655458D` (`lead_id`),
CONSTRAINT `bak_FK_C80AF9E655458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_C80AF9E65FF69B7D` FOREIGN KEY (`form_id`) REFERENCES `bak_forms` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_C80AF9E6A03F5E9F` FOREIGN KEY (`ip_id`) REFERENCES `bak_ip_addresses` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_C80AF9E6C4663E4` FOREIGN KEY (`page_id`) REFERENCES `bak_pages` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_form_submissions`
--
LOCK TABLES `bak_form_submissions` WRITE;
/*!40000 ALTER TABLE `bak_form_submissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_form_submissions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_forms`
--
DROP TABLE IF EXISTS `bak_forms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_forms` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`alias` varchar(191) NOT NULL,
`lang` varchar(191) DEFAULT NULL,
`form_attr` varchar(191) DEFAULT NULL,
`cached_html` longtext DEFAULT NULL,
`post_action` varchar(191) NOT NULL,
`post_action_property` longtext DEFAULT NULL,
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`template` varchar(191) DEFAULT NULL,
`in_kiosk_mode` tinyint(1) DEFAULT NULL,
`render_style` tinyint(1) DEFAULT NULL,
`form_type` varchar(191) DEFAULT NULL,
`no_index` tinyint(1) DEFAULT NULL,
`progressive_profiling_limit` int(11) DEFAULT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `bak_IDX_FD3F1BF712469DE2` (`category_id`),
CONSTRAINT `bak_FK_FD3F1BF712469DE2` FOREIGN KEY (`category_id`) REFERENCES `bak_categories` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_forms`
--
LOCK TABLES `bak_forms` WRITE;
/*!40000 ALTER TABLE `bak_forms` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_forms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_imports`
--
DROP TABLE IF EXISTS `bak_imports`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_imports` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`dir` varchar(191) NOT NULL,
`file` varchar(191) NOT NULL,
`original_file` varchar(191) DEFAULT NULL,
`line_count` int(11) NOT NULL,
`inserted_count` int(11) NOT NULL,
`updated_count` int(11) NOT NULL,
`ignored_count` int(11) NOT NULL,
`priority` int(11) NOT NULL,
`status` int(11) NOT NULL,
`date_started` datetime DEFAULT NULL,
`date_ended` datetime DEFAULT NULL,
`object` varchar(191) NOT NULL,
`properties` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '(DC2Type:json)' CHECK (json_valid(`properties`)),
PRIMARY KEY (`id`),
KEY `bak_import_status` (`status`),
KEY `bak_import_priority` (`priority`),
KEY `bak_import_object` (`object`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_imports`
--
LOCK TABLES `bak_imports` WRITE;
/*!40000 ALTER TABLE `bak_imports` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_imports` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_integration_entity`
--
DROP TABLE IF EXISTS `bak_integration_entity`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_integration_entity` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`date_added` datetime NOT NULL,
`integration` varchar(191) DEFAULT NULL,
`integration_entity` varchar(191) DEFAULT NULL,
`integration_entity_id` varchar(191) DEFAULT NULL,
`internal_entity` varchar(191) DEFAULT NULL,
`internal_entity_id` int(11) DEFAULT NULL,
`last_sync_date` datetime DEFAULT NULL,
`internal` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
PRIMARY KEY (`id`),
KEY `bak_integration_internal_entity` (`integration`,`internal_entity`,`internal_entity_id`),
KEY `bak_integration_external_entity` (`integration`,`integration_entity`,`integration_entity_id`),
KEY `bak_internal_integration_entity` (`internal_entity_id`,`integration_entity_id`,`internal_entity`,`integration_entity`),
KEY `bak_integration_last_sync_date` (`integration`,`last_sync_date`),
KEY `bak_integration_entity_match` (`integration`,`internal_entity`,`integration_entity`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_integration_entity`
--
LOCK TABLES `bak_integration_entity` WRITE;
/*!40000 ALTER TABLE `bak_integration_entity` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_integration_entity` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_ip_addresses`
--
DROP TABLE IF EXISTS `bak_ip_addresses`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_ip_addresses` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`ip_address` varchar(45) NOT NULL,
`ip_details` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
PRIMARY KEY (`id`),
KEY `bak_ip_search` (`ip_address`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_ip_addresses`
--
LOCK TABLES `bak_ip_addresses` WRITE;
/*!40000 ALTER TABLE `bak_ip_addresses` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_ip_addresses` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_lead_categories`
--
DROP TABLE IF EXISTS `bak_lead_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_lead_categories` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned NOT NULL,
`lead_id` bigint(20) unsigned NOT NULL,
`date_added` datetime NOT NULL,
`manually_removed` tinyint(1) NOT NULL,
`manually_added` tinyint(1) NOT NULL,
PRIMARY KEY (`id`),
KEY `bak_IDX_12685DF412469DE2` (`category_id`),
KEY `bak_IDX_12685DF455458D` (`lead_id`),
CONSTRAINT `bak_FK_12685DF412469DE2` FOREIGN KEY (`category_id`) REFERENCES `bak_categories` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_12685DF455458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_lead_categories`
--
LOCK TABLES `bak_lead_categories` WRITE;
/*!40000 ALTER TABLE `bak_lead_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_lead_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_lead_companies_change_log`
--
DROP TABLE IF EXISTS `bak_lead_companies_change_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_lead_companies_change_log` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`lead_id` bigint(20) unsigned NOT NULL,
`type` tinytext NOT NULL,
`event_name` varchar(191) NOT NULL,
`action_name` varchar(191) NOT NULL,
`company_id` int(11) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `bak_IDX_A034C81B55458D` (`lead_id`),
KEY `bak_company_date_added` (`date_added`),
CONSTRAINT `bak_FK_A034C81B55458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_lead_companies_change_log`
--
LOCK TABLES `bak_lead_companies_change_log` WRITE;
/*!40000 ALTER TABLE `bak_lead_companies_change_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_lead_companies_change_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_lead_devices`
--
DROP TABLE IF EXISTS `bak_lead_devices`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_lead_devices` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`lead_id` bigint(20) unsigned NOT NULL,
`date_added` datetime NOT NULL,
`client_info` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`device` varchar(191) DEFAULT NULL,
`device_os_name` varchar(191) DEFAULT NULL,
`device_os_shortname` varchar(191) DEFAULT NULL,
`device_os_version` varchar(191) DEFAULT NULL,
`device_os_platform` varchar(191) DEFAULT NULL,
`device_brand` varchar(191) DEFAULT NULL,
`device_model` varchar(191) DEFAULT NULL,
`tracking_id` varchar(191) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `bak_UNIQ_48C912F47D05ABBE` (`tracking_id`),
KEY `bak_device_model_search` (`device_model`),
KEY `bak_device_os_version_search` (`device_os_version`),
KEY `bak_device_search` (`device`),
KEY `bak_device_os_platform_search` (`device_os_platform`),
KEY `bak_device_os_name_search` (`device_os_name`),
KEY `bak_IDX_48C912F455458D` (`lead_id`),
KEY `bak_device_brand_search` (`device_brand`),
KEY `bak_device_os_shortname_search` (`device_os_shortname`),
KEY `bak_date_added_search` (`date_added`),
CONSTRAINT `bak_FK_48C912F455458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_lead_devices`
--
LOCK TABLES `bak_lead_devices` WRITE;
/*!40000 ALTER TABLE `bak_lead_devices` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_lead_devices` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_lead_donotcontact`
--
DROP TABLE IF EXISTS `bak_lead_donotcontact`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_lead_donotcontact` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`lead_id` bigint(20) unsigned DEFAULT NULL,
`date_added` datetime NOT NULL,
`reason` smallint(6) NOT NULL,
`channel` varchar(191) NOT NULL,
`channel_id` int(11) DEFAULT NULL,
`comments` longtext DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `bak_IDX_71DC0B1D55458D` (`lead_id`),
KEY `bak_dnc_reason_search` (`reason`),
KEY `bak_leadid_reason_channel` (`lead_id`,`channel`,`reason`),
KEY `bak_dnc_date_added` (`date_added`),
CONSTRAINT `bak_FK_71DC0B1D55458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_lead_donotcontact`
--
LOCK TABLES `bak_lead_donotcontact` WRITE;
/*!40000 ALTER TABLE `bak_lead_donotcontact` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_lead_donotcontact` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_lead_event_log`
--
DROP TABLE IF EXISTS `bak_lead_event_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_lead_event_log` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`lead_id` bigint(20) unsigned DEFAULT NULL,
`user_id` int(11) DEFAULT NULL,
`user_name` varchar(191) DEFAULT NULL,
`bundle` varchar(191) DEFAULT NULL,
`object` varchar(191) DEFAULT NULL,
`action` varchar(191) DEFAULT NULL,
`object_id` int(11) DEFAULT NULL,
`date_added` datetime NOT NULL,
`properties` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '(DC2Type:json)' CHECK (json_valid(`properties`)),
PRIMARY KEY (`id`),
KEY `bak_lead_timeline_action_index` (`action`),
KEY `bak_lead_timeline_index` (`bundle`,`object`,`action`,`object_id`),
KEY `bak_lead_id_index` (`lead_id`),
KEY `bak_lead_date_added_index` (`date_added`),
KEY `bak_IDX_SEARCH` (`bundle`,`object`,`action`,`object_id`,`date_added`),
KEY `bak_lead_object_index` (`object`,`object_id`),
CONSTRAINT `bak_FK_753AF2E55458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_lead_event_log`
--
LOCK TABLES `bak_lead_event_log` WRITE;
/*!40000 ALTER TABLE `bak_lead_event_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_lead_event_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_lead_fields`
--
DROP TABLE IF EXISTS `bak_lead_fields`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_lead_fields` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`label` varchar(191) NOT NULL,
`alias` varchar(191) NOT NULL,
`type` varchar(50) NOT NULL,
`field_group` varchar(191) DEFAULT NULL,
`default_value` varchar(191) DEFAULT NULL,
`is_required` tinyint(1) NOT NULL,
`is_fixed` tinyint(1) NOT NULL,
`is_visible` tinyint(1) NOT NULL,
`is_short_visible` tinyint(1) NOT NULL DEFAULT 0,
`is_listable` tinyint(1) NOT NULL,
`is_publicly_updatable` tinyint(1) NOT NULL,
`is_unique_identifer` tinyint(1) DEFAULT NULL,
`is_index` tinyint(1) NOT NULL DEFAULT 0,
`char_length_limit` int(11) DEFAULT NULL,
`field_order` int(11) DEFAULT NULL,
`object` varchar(191) DEFAULT NULL,
`properties` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`column_is_not_created` tinyint(1) NOT NULL DEFAULT 0,
`column_is_not_removed` tinyint(1) NOT NULL DEFAULT 0,
`original_is_published_value` tinyint(1) NOT NULL DEFAULT 0,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `bak_idx_object_field_order_is_published` (`object`,`field_order`,`is_published`)
) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_lead_fields`
--
LOCK TABLES `bak_lead_fields` WRITE;
/*!40000 ALTER TABLE `bak_lead_fields` DISABLE KEYS */;
INSERT INTO `bak_lead_fields` VALUES
(1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Title','title','lookup','core',NULL,0,1,1,0,1,0,0,0,64,1,'lead','a:1:{s:4:\"list\";a:3:{i:0;s:2:\"Mr\";i:1;s:3:\"Mrs\";i:2;s:4:\"Miss\";}}',0,0,0,'c8294905-24d5-4a3d-8669-0363e3c525ae'),
(2,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'First Name','firstname','text','core',NULL,0,1,1,1,1,0,0,0,64,2,'lead','a:0:{}',0,0,0,'da0129da-238b-4ac8-a8a2-753e93747942'),
(3,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Last Name','lastname','text','core',NULL,0,1,1,1,1,0,0,0,64,3,'lead','a:0:{}',0,0,0,'33dc92b9-c811-43b5-a4c0-7f9f93638f2a'),
(4,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Primary company','company','text','core',NULL,0,1,1,0,1,0,0,0,64,4,'lead','a:0:{}',0,0,0,'a125b739-b6c5-407e-9a8b-329dca9cac3d'),
(5,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Position','position','text','core',NULL,0,1,1,0,1,0,0,0,64,5,'lead','a:0:{}',0,0,0,'b8d056df-6df0-415d-b1a0-9e5ecbbf21e0'),
(6,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Email','email','email','core',NULL,0,1,1,1,1,0,1,1,64,6,'lead','a:0:{}',0,0,0,'64a07dc8-6089-469c-88d0-ee51b344b49c'),
(7,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Mobile','mobile','tel','core',NULL,0,1,1,0,1,0,0,0,64,7,'lead','a:0:{}',0,0,0,'b26700bd-bcdb-4bc1-b25e-11081782bcac'),
(8,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Phone','phone','tel','core',NULL,0,1,1,0,1,0,0,0,64,8,'lead','a:0:{}',0,0,0,'766ba96d-3d60-4ce6-a4a4-43efe378f9f8'),
(9,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Points','points','number','core','0',0,1,1,0,1,0,0,0,64,9,'lead','a:0:{}',0,0,0,'3addb83d-e5b6-4931-b60c-4096774a2a04'),
(10,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Fax','fax','tel','core',NULL,0,0,1,0,1,0,0,0,64,10,'lead','a:0:{}',0,0,0,'9af4ff4c-0ff0-45a8-92a4-e175c1f4a631'),
(11,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Address Line 1','address1','text','core',NULL,0,1,1,0,1,0,0,0,64,11,'lead','a:0:{}',0,0,0,'4940adff-1b0b-4e41-8656-92eabf6d8c55'),
(12,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Address Line 2','address2','text','core',NULL,0,1,1,0,1,0,0,0,64,12,'lead','a:0:{}',0,0,0,'bb51acfa-68b2-42de-aff1-70c76f06b89f'),
(13,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'City','city','text','core',NULL,0,1,1,0,1,0,0,0,64,13,'lead','a:0:{}',0,0,0,'1c395d95-0410-4643-b582-74899c250693'),
(14,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'State','state','region','core',NULL,0,1,1,0,1,0,0,0,64,14,'lead','a:0:{}',0,0,0,'e3992558-67a4-4d7e-961e-53d76f87307f'),
(15,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Zip Code','zipcode','text','core',NULL,0,1,1,0,1,0,0,0,64,15,'lead','a:0:{}',0,0,0,'56f46efb-503f-457a-b425-cf6f9e77a6b7'),
(16,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Country','country','country','core',NULL,0,1,1,0,1,0,0,0,64,16,'lead','a:0:{}',0,0,0,'644215fd-9d44-4a82-b82c-241a05b81f5a'),
(17,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Preferred Locale','preferred_locale','locale','core',NULL,0,1,1,0,1,0,0,0,64,17,'lead','a:0:{}',0,0,0,'5e95d6ec-8e41-41d3-bca9-bce5a2a2f7aa'),
(18,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Preferred Timezone','timezone','timezone','core',NULL,0,1,1,0,1,0,0,0,64,18,'lead','a:0:{}',0,0,0,'4316a5e1-30ba-4d83-8964-ba5312db1282'),
(19,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Date Last Active','last_active','datetime','core',NULL,0,1,1,0,1,0,0,0,64,19,'lead','a:0:{}',0,0,0,'bc68ff15-6300-4a2d-9dfc-0b8e62e0b394'),
(20,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Attribution Date','attribution_date','datetime','core',NULL,0,1,1,0,1,0,0,0,64,20,'lead','a:0:{}',0,0,0,'9abebed4-acef-466f-8eb5-ec391cc618c9'),
(21,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Attribution','attribution','number','core',NULL,0,1,1,0,1,0,0,0,64,21,'lead','a:2:{s:9:\"roundmode\";i:4;s:5:\"scale\";i:2;}',0,0,0,'b54cd84b-49f8-4e88-9585-9a19e799bf32'),
(22,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Website','website','url','core',NULL,0,0,1,0,1,0,0,0,64,22,'lead','a:0:{}',0,0,0,'dc4d3a3c-a971-4604-bd01-4697ce9f0100'),
(23,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Facebook','facebook','text','social',NULL,0,0,1,0,1,0,0,0,64,23,'lead','a:0:{}',0,0,0,'1c845071-0ca8-429b-9685-301c354db9a2'),
(24,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Foursquare','foursquare','text','social',NULL,0,0,1,0,1,0,0,0,64,24,'lead','a:0:{}',0,0,0,'7da51fd5-1f33-465d-9b14-9f8b830dd9ab'),
(25,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Instagram','instagram','text','social',NULL,0,0,1,0,1,0,0,0,64,25,'lead','a:0:{}',0,0,0,'58764b57-e0f7-4ec0-8bc1-5897d410f797'),
(26,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'mautic.lead.field.linkedin','linkedin','text','social',NULL,0,0,1,0,1,0,0,0,64,26,'lead','a:0:{}',0,0,0,'72836862-913a-4aac-a3e8-ffcd2a570f8d'),
(27,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Skype','skype','text','social',NULL,0,0,1,0,1,0,0,0,64,27,'lead','a:0:{}',0,0,0,'35f041b9-2628-4ceb-8ac7-0abf9e6492c3'),
(28,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Twitter','twitter','text','social',NULL,0,0,1,0,1,0,0,0,64,28,'lead','a:0:{}',0,0,0,'fbe45d1f-d160-4d3e-a3a3-0534144e3c83'),
(29,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Address 1','companyaddress1','text','core',NULL,0,1,1,0,1,0,0,0,64,1,'company','a:0:{}',0,0,0,'bde0f813-fd4d-4c2b-a371-11faadc0cdf5'),
(30,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Address 2','companyaddress2','text','core',NULL,0,1,1,0,1,0,0,0,64,2,'company','a:0:{}',0,0,0,'5edda0e8-2626-4a11-98c8-bbcd4311f458'),
(31,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Company Email','companyemail','email','core',NULL,0,1,1,0,1,0,0,0,64,3,'company','a:0:{}',0,0,0,'8e208c50-26f4-4088-9ac3-3d524b277bf0'),
(32,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Phone','companyphone','tel','core',NULL,0,1,1,0,1,0,0,0,64,4,'company','a:0:{}',0,0,0,'13403980-0e3e-4e65-89b4-4a124f4be663'),
(33,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'City','companycity','text','core',NULL,0,1,1,0,1,0,0,0,64,5,'company','a:0:{}',0,0,0,'3a8314b7-ec7d-49c5-a478-a62985a54a63'),
(34,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'State','companystate','region','core',NULL,0,1,1,0,1,0,0,0,64,6,'company','a:0:{}',0,0,0,'58669110-1278-4ef3-8807-0f68ba408bf7'),
(35,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Zip Code','companyzipcode','text','core',NULL,0,1,1,0,1,0,0,0,64,7,'company','a:0:{}',0,0,0,'c0395fbf-b6ba-497d-9e3f-80b09225156c'),
(36,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Country','companycountry','country','core',NULL,0,1,1,0,1,0,0,0,64,8,'company','a:0:{}',0,0,0,'47bc1633-4fbf-483e-a97e-69aa3a8f478b'),
(37,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Company Name','companyname','text','core',NULL,1,1,1,0,1,0,1,1,64,9,'company','a:0:{}',0,0,0,'01d58760-2369-444c-a030-929c900f2dea'),
(38,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Website','companywebsite','url','core',NULL,0,1,1,0,1,0,0,0,64,10,'company','a:0:{}',0,0,0,'ed08ac7e-6391-4255-b0e2-9890a30c696e'),
(39,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Number of Employees','companynumber_of_employees','number','professional',NULL,0,0,1,0,1,0,0,0,64,11,'company','a:2:{s:9:\"roundmode\";i:4;s:5:\"scale\";i:0;}',0,0,0,'f3303613-eb73-4e88-812b-031dcb67ff2f'),
(40,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Fax','companyfax','tel','professional',NULL,0,0,1,0,1,0,0,0,64,12,'company','a:0:{}',0,0,0,'5f72f3b7-0404-4ead-93b1-ab96b2fd8702'),
(41,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Annual Revenue','companyannual_revenue','number','professional',NULL,0,0,1,0,1,0,0,0,64,13,'company','a:2:{s:9:\"roundmode\";i:4;s:5:\"scale\";i:2;}',0,0,0,'63f5545d-9d91-495d-869e-abd83a46e9e3'),
(42,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Industry','companyindustry','select','professional',NULL,0,1,1,0,1,0,0,0,64,14,'company','a:1:{s:4:\"list\";a:41:{i:0;a:2:{s:5:\"label\";s:19:\"Aerospace & Defense\";s:5:\"value\";s:19:\"Aerospace & Defense\";}i:1;a:2:{s:5:\"label\";s:11:\"Agriculture\";s:5:\"value\";s:11:\"Agriculture\";}i:2;a:2:{s:5:\"label\";s:7:\"Apparel\";s:5:\"value\";s:7:\"Apparel\";}i:3;a:2:{s:5:\"label\";s:21:\"Automotive & Assembly\";s:5:\"value\";s:21:\"Automotive & Assembly\";}i:4;a:2:{s:5:\"label\";s:7:\"Banking\";s:5:\"value\";s:7:\"Banking\";}i:5;a:2:{s:5:\"label\";s:13:\"Biotechnology\";s:5:\"value\";s:13:\"Biotechnology\";}i:6;a:2:{s:5:\"label\";s:9:\"Chemicals\";s:5:\"value\";s:9:\"Chemicals\";}i:7;a:2:{s:5:\"label\";s:14:\"Communications\";s:5:\"value\";s:14:\"Communications\";}i:8;a:2:{s:5:\"label\";s:12:\"Construction\";s:5:\"value\";s:12:\"Construction\";}i:9;a:2:{s:5:\"label\";s:23:\"Consumer Packaged Goods\";s:5:\"value\";s:23:\"Consumer Packaged Goods\";}i:10;a:2:{s:5:\"label\";s:9:\"Education\";s:5:\"value\";s:9:\"Education\";}i:11;a:2:{s:5:\"label\";s:11:\"Electronics\";s:5:\"value\";s:11:\"Electronics\";}i:12;a:2:{s:5:\"label\";s:6:\"Energy\";s:5:\"value\";s:6:\"Energy\";}i:13;a:2:{s:5:\"label\";s:11:\"Engineering\";s:5:\"value\";s:11:\"Engineering\";}i:14;a:2:{s:5:\"label\";s:13:\"Entertainment\";s:5:\"value\";s:13:\"Entertainment\";}i:15;a:2:{s:5:\"label\";s:13:\"Environmental\";s:5:\"value\";s:13:\"Environmental\";}i:16;a:2:{s:5:\"label\";s:7:\"Finance\";s:5:\"value\";s:7:\"Finance\";}i:17;a:2:{s:5:\"label\";s:15:\"Food & Beverage\";s:5:\"value\";s:15:\"Food & Beverage\";}i:18;a:2:{s:5:\"label\";s:10:\"Government\";s:5:\"value\";s:10:\"Government\";}i:19;a:2:{s:5:\"label\";s:10:\"Healthcare\";s:5:\"value\";s:10:\"Healthcare\";}i:20;a:2:{s:5:\"label\";s:11:\"Hospitality\";s:5:\"value\";s:11:\"Hospitality\";}i:21;a:2:{s:5:\"label\";s:9:\"Insurance\";s:5:\"value\";s:9:\"Insurance\";}i:22;a:2:{s:5:\"label\";s:9:\"Machinery\";s:5:\"value\";s:9:\"Machinery\";}i:23;a:2:{s:5:\"label\";s:13:\"Manufacturing\";s:5:\"value\";s:13:\"Manufacturing\";}i:24;a:2:{s:5:\"label\";s:5:\"Media\";s:5:\"value\";s:5:\"Media\";}i:25;a:2:{s:5:\"label\";s:15:\"Metals & Mining\";s:5:\"value\";s:15:\"Metals & Mining\";}i:26;a:2:{s:5:\"label\";s:14:\"Not for Profit\";s:5:\"value\";s:14:\"Not for Profit\";}i:27;a:2:{s:5:\"label\";s:9:\"Oil & Gas\";s:5:\"value\";s:9:\"Oil & Gas\";}i:28;a:2:{s:5:\"label\";s:17:\"Packaging & Paper\";s:5:\"value\";s:17:\"Packaging & Paper\";}i:29;a:2:{s:5:\"label\";s:36:\"Private Equity & Principal Investors\";s:5:\"value\";s:36:\"Private Equity & Principal Investors\";}i:30;a:2:{s:5:\"label\";s:10:\"Recreation\";s:5:\"value\";s:10:\"Recreation\";}i:31;a:2:{s:5:\"label\";s:11:\"Real Estate\";s:5:\"value\";s:11:\"Real Estate\";}i:32;a:2:{s:5:\"label\";s:6:\"Retail\";s:5:\"value\";s:6:\"Retail\";}i:33;a:2:{s:5:\"label\";s:14:\"Semiconductors\";s:5:\"value\";s:14:\"Semiconductors\";}i:34;a:2:{s:5:\"label\";s:8:\"Shipping\";s:5:\"value\";s:8:\"Shipping\";}i:35;a:2:{s:5:\"label\";s:13:\"Social Sector\";s:5:\"value\";s:13:\"Social Sector\";}i:36;a:2:{s:5:\"label\";s:10:\"Technology\";s:5:\"value\";s:10:\"Technology\";}i:37;a:2:{s:5:\"label\";s:18:\"Telecommunications\";s:5:\"value\";s:18:\"Telecommunications\";}i:38;a:2:{s:5:\"label\";s:14:\"Transportation\";s:5:\"value\";s:14:\"Transportation\";}i:39;a:2:{s:5:\"label\";s:9:\"Utilities\";s:5:\"value\";s:9:\"Utilities\";}i:40;a:2:{s:5:\"label\";s:5:\"Other\";s:5:\"value\";s:5:\"Other\";}}}',0,0,0,'2314aa6f-b402-43f6-ac03-38dfb890781c'),
(43,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Description','companydescription','text','professional',NULL,0,1,1,0,1,0,0,0,64,15,'company','a:0:{}',0,0,0,'8eefc0f5-8bdc-4407-8395-a837c3d4fd00');
/*!40000 ALTER TABLE `bak_lead_fields` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_lead_frequencyrules`
--
DROP TABLE IF EXISTS `bak_lead_frequencyrules`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_lead_frequencyrules` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`lead_id` bigint(20) unsigned NOT NULL,
`date_added` datetime NOT NULL,
`frequency_number` smallint(6) DEFAULT NULL,
`frequency_time` varchar(25) DEFAULT NULL,
`channel` varchar(191) NOT NULL,
`preferred_channel` tinyint(1) NOT NULL,
`pause_from_date` datetime DEFAULT NULL,
`pause_to_date` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `bak_IDX_AA8A57F455458D` (`lead_id`),
KEY `bak_channel_frequency` (`channel`),
KEY `bak_idx_frequency_date_added` (`lead_id`,`date_added`),
CONSTRAINT `bak_FK_AA8A57F455458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_lead_frequencyrules`
--
LOCK TABLES `bak_lead_frequencyrules` WRITE;
/*!40000 ALTER TABLE `bak_lead_frequencyrules` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_lead_frequencyrules` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_lead_ips_xref`
--
DROP TABLE IF EXISTS `bak_lead_ips_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_lead_ips_xref` (
`lead_id` bigint(20) unsigned NOT NULL,
`ip_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`lead_id`,`ip_id`),
KEY `bak_IDX_9EED7E66A03F5E9F` (`ip_id`),
CONSTRAINT `bak_FK_9EED7E6655458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_9EED7E66A03F5E9F` FOREIGN KEY (`ip_id`) REFERENCES `bak_ip_addresses` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_lead_ips_xref`
--
LOCK TABLES `bak_lead_ips_xref` WRITE;
/*!40000 ALTER TABLE `bak_lead_ips_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_lead_ips_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_lead_list_projects_xref`
--
DROP TABLE IF EXISTS `bak_lead_list_projects_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_lead_list_projects_xref` (
`leadlist_id` int(10) unsigned NOT NULL,
`project_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`leadlist_id`,`project_id`),
KEY `bak_IDX_4B06CBD0166D1F9C` (`project_id`),
CONSTRAINT `bak_FK_4B06CBD0166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `bak_projects` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_4B06CBD0B9FC8874` FOREIGN KEY (`leadlist_id`) REFERENCES `bak_lead_lists` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_lead_list_projects_xref`
--
LOCK TABLES `bak_lead_list_projects_xref` WRITE;
/*!40000 ALTER TABLE `bak_lead_list_projects_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_lead_list_projects_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_lead_lists`
--
DROP TABLE IF EXISTS `bak_lead_lists`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_lead_lists` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`alias` varchar(191) NOT NULL,
`public_name` varchar(191) NOT NULL,
`filters` longtext NOT NULL COMMENT '(DC2Type:array)',
`is_global` tinyint(1) NOT NULL,
`is_preference_center` tinyint(1) NOT NULL,
`last_built_date` datetime DEFAULT NULL,
`last_built_time` double DEFAULT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `bak_IDX_6EC1522A12469DE2` (`category_id`),
KEY `bak_lead_list_alias` (`alias`),
CONSTRAINT `bak_FK_6EC1522A12469DE2` FOREIGN KEY (`category_id`) REFERENCES `bak_categories` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_lead_lists`
--
LOCK TABLES `bak_lead_lists` WRITE;
/*!40000 ALTER TABLE `bak_lead_lists` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_lead_lists` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_lead_lists_leads`
--
DROP TABLE IF EXISTS `bak_lead_lists_leads`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_lead_lists_leads` (
`leadlist_id` int(10) unsigned NOT NULL,
`lead_id` bigint(20) unsigned NOT NULL,
`date_added` datetime NOT NULL,
`manually_removed` tinyint(1) NOT NULL,
`manually_added` tinyint(1) NOT NULL,
PRIMARY KEY (`leadlist_id`,`lead_id`),
KEY `bak_lead_id_lists_id_removed` (`lead_id`,`leadlist_id`,`manually_removed`),
KEY `bak_IDX_F5F47C7C55458D` (`lead_id`),
KEY `bak_manually_removed` (`manually_removed`),
CONSTRAINT `bak_FK_F5F47C7C55458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_F5F47C7CB9FC8874` FOREIGN KEY (`leadlist_id`) REFERENCES `bak_lead_lists` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_lead_lists_leads`
--
LOCK TABLES `bak_lead_lists_leads` WRITE;
/*!40000 ALTER TABLE `bak_lead_lists_leads` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_lead_lists_leads` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_lead_notes`
--
DROP TABLE IF EXISTS `bak_lead_notes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_lead_notes` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`lead_id` bigint(20) unsigned NOT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`text` longtext NOT NULL,
`type` varchar(50) DEFAULT NULL,
`date_time` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `bak_IDX_67FC6B0355458D` (`lead_id`),
CONSTRAINT `bak_FK_67FC6B0355458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_lead_notes`
--
LOCK TABLES `bak_lead_notes` WRITE;
/*!40000 ALTER TABLE `bak_lead_notes` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_lead_notes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_lead_points_change_log`
--
DROP TABLE IF EXISTS `bak_lead_points_change_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_lead_points_change_log` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`lead_id` bigint(20) unsigned NOT NULL,
`ip_id` int(10) unsigned DEFAULT NULL,
`group_id` int(10) unsigned DEFAULT NULL,
`type` tinytext NOT NULL,
`event_name` varchar(191) NOT NULL,
`action_name` varchar(191) NOT NULL,
`delta` int(11) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `bak_point_date_added` (`date_added`),
KEY `bak_IDX_949C2CCC55458D` (`lead_id`),
KEY `bak_IDX_949C2CCCA03F5E9F` (`ip_id`),
KEY `bak_IDX_949C2CCCFE54D947` (`group_id`),
CONSTRAINT `bak_FK_949C2CCC55458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_949C2CCCA03F5E9F` FOREIGN KEY (`ip_id`) REFERENCES `bak_ip_addresses` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_949C2CCCFE54D947` FOREIGN KEY (`group_id`) REFERENCES `bak_point_groups` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_lead_points_change_log`
--
LOCK TABLES `bak_lead_points_change_log` WRITE;
/*!40000 ALTER TABLE `bak_lead_points_change_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_lead_points_change_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_lead_stages_change_log`
--
DROP TABLE IF EXISTS `bak_lead_stages_change_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_lead_stages_change_log` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`lead_id` bigint(20) unsigned NOT NULL,
`stage_id` int(10) unsigned DEFAULT NULL,
`event_name` varchar(191) NOT NULL,
`action_name` varchar(191) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `bak_IDX_73B42EF355458D` (`lead_id`),
KEY `bak_IDX_73B42EF32298D193` (`stage_id`),
KEY `bak_lead_stages_change_log_date_added` (`date_added`),
CONSTRAINT `bak_FK_73B42EF32298D193` FOREIGN KEY (`stage_id`) REFERENCES `bak_stages` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_73B42EF355458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_lead_stages_change_log`
--
LOCK TABLES `bak_lead_stages_change_log` WRITE;
/*!40000 ALTER TABLE `bak_lead_stages_change_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_lead_stages_change_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_lead_tags`
--
DROP TABLE IF EXISTS `bak_lead_tags`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_lead_tags` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`tag` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `bak_lead_tag_search` (`tag`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_lead_tags`
--
LOCK TABLES `bak_lead_tags` WRITE;
/*!40000 ALTER TABLE `bak_lead_tags` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_lead_tags` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_lead_tags_xref`
--
DROP TABLE IF EXISTS `bak_lead_tags_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_lead_tags_xref` (
`lead_id` bigint(20) unsigned NOT NULL,
`tag_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`lead_id`,`tag_id`),
KEY `bak_IDX_F2E51EB6BAD26311` (`tag_id`),
CONSTRAINT `bak_FK_F2E51EB655458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_F2E51EB6BAD26311` FOREIGN KEY (`tag_id`) REFERENCES `bak_lead_tags` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_lead_tags_xref`
--
LOCK TABLES `bak_lead_tags_xref` WRITE;
/*!40000 ALTER TABLE `bak_lead_tags_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_lead_tags_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_lead_utmtags`
--
DROP TABLE IF EXISTS `bak_lead_utmtags`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_lead_utmtags` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`lead_id` bigint(20) unsigned NOT NULL,
`date_added` datetime NOT NULL,
`query` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`referer` longtext DEFAULT NULL,
`remote_host` varchar(191) DEFAULT NULL,
`url` longtext DEFAULT NULL,
`user_agent` longtext DEFAULT NULL,
`utm_campaign` varchar(191) DEFAULT NULL,
`utm_content` varchar(191) DEFAULT NULL,
`utm_medium` varchar(191) DEFAULT NULL,
`utm_source` varchar(191) DEFAULT NULL,
`utm_term` varchar(191) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `bak_IDX_C51BCB8D55458D` (`lead_id`),
KEY `bak_utm_date_added` (`date_added`),
CONSTRAINT `bak_FK_C51BCB8D55458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_lead_utmtags`
--
LOCK TABLES `bak_lead_utmtags` WRITE;
/*!40000 ALTER TABLE `bak_lead_utmtags` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_lead_utmtags` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_leads`
--
DROP TABLE IF EXISTS `bak_leads`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_leads` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`owner_id` int(10) unsigned DEFAULT NULL,
`stage_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`points` int(11) NOT NULL,
`last_active` datetime DEFAULT NULL,
`internal` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`social_cache` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`date_identified` datetime DEFAULT NULL,
`preferred_profile_image` varchar(191) DEFAULT NULL,
`title` varchar(191) DEFAULT NULL,
`firstname` varchar(191) DEFAULT NULL,
`lastname` varchar(191) DEFAULT NULL,
`company` varchar(191) DEFAULT NULL,
`position` varchar(191) DEFAULT NULL,
`email` varchar(191) DEFAULT NULL,
`phone` varchar(191) DEFAULT NULL,
`mobile` varchar(191) DEFAULT NULL,
`address1` varchar(191) DEFAULT NULL,
`address2` varchar(191) DEFAULT NULL,
`city` varchar(191) DEFAULT NULL,
`state` varchar(191) DEFAULT NULL,
`zipcode` varchar(191) DEFAULT NULL,
`timezone` varchar(191) DEFAULT NULL,
`country` varchar(191) DEFAULT NULL,
`fax` varchar(191) DEFAULT NULL,
`preferred_locale` varchar(191) DEFAULT NULL,
`attribution_date` datetime DEFAULT NULL,
`attribution` double DEFAULT NULL,
`website` varchar(191) DEFAULT NULL,
`facebook` varchar(191) DEFAULT NULL,
`foursquare` varchar(191) DEFAULT NULL,
`instagram` varchar(191) DEFAULT NULL,
`linkedin` varchar(191) DEFAULT NULL,
`skype` varchar(191) DEFAULT NULL,
`twitter` varchar(191) DEFAULT NULL,
`generated_email_domain` varchar(255) GENERATED ALWAYS AS (substr(`email`,locate('@',`email`) + 1)) VIRTUAL COMMENT '(DC2Type:generated)',
PRIMARY KEY (`id`),
KEY `bak_instagram_search` (`instagram`),
KEY `bak_website_search` (`website`),
KEY `bak_preferred_locale_search` (`preferred_locale`),
KEY `bak_lead_date_modified` (`date_modified`),
KEY `bak_IDX_179045527E3C61F9` (`owner_id`),
KEY `bak_contact_attribution` (`attribution`,`attribution_date`),
KEY `bak_linkedin_search` (`linkedin`),
KEY `bak_facebook_search` (`facebook`),
KEY `bak_attribution_date_search` (`attribution_date`),
KEY `bak_date_identified` (`date_identified`),
KEY `bak_generated_email_domain` (`generated_email_domain`),
KEY `bak_IDX_179045522298D193` (`stage_id`),
KEY `bak_skype_search` (`skype`),
KEY `bak_foursquare_search` (`foursquare`),
KEY `bak_attribution_search` (`attribution`),
KEY `bak_fax_search` (`fax`),
KEY `bak_lead_date_added` (`date_added`),
KEY `bak_date_added_country_index` (`date_added`,`country`),
KEY `bak_twitter_search` (`twitter`),
CONSTRAINT `bak_FK_179045522298D193` FOREIGN KEY (`stage_id`) REFERENCES `bak_stages` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_179045527E3C61F9` FOREIGN KEY (`owner_id`) REFERENCES `bak_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_leads`
--
LOCK TABLES `bak_leads` WRITE;
/*!40000 ALTER TABLE `bak_leads` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_leads` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_message_channels`
--
DROP TABLE IF EXISTS `bak_message_channels`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_message_channels` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`message_id` int(10) unsigned NOT NULL,
`channel` varchar(191) NOT NULL,
`channel_id` int(11) DEFAULT NULL,
`properties` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT '(DC2Type:json)' CHECK (json_valid(`properties`)),
`is_enabled` tinyint(1) NOT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
UNIQUE KEY `bak_channel_index` (`message_id`,`channel`),
KEY `bak_channel_entity_index` (`channel`,`channel_id`),
KEY `bak_channel_enabled_index` (`channel`,`is_enabled`),
KEY `bak_IDX_FA3226A7537A1329` (`message_id`),
CONSTRAINT `bak_FK_FA3226A7537A1329` FOREIGN KEY (`message_id`) REFERENCES `bak_messages` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_message_channels`
--
LOCK TABLES `bak_message_channels` WRITE;
/*!40000 ALTER TABLE `bak_message_channels` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_message_channels` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_message_projects_xref`
--
DROP TABLE IF EXISTS `bak_message_projects_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_message_projects_xref` (
`message_id` int(10) unsigned NOT NULL,
`project_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`message_id`,`project_id`),
KEY `bak_IDX_13524A6E166D1F9C` (`project_id`),
CONSTRAINT `bak_FK_13524A6E166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `bak_projects` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_13524A6E537A1329` FOREIGN KEY (`message_id`) REFERENCES `bak_messages` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_message_projects_xref`
--
LOCK TABLES `bak_message_projects_xref` WRITE;
/*!40000 ALTER TABLE `bak_message_projects_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_message_projects_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_message_queue`
--
DROP TABLE IF EXISTS `bak_message_queue`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_message_queue` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`event_id` int(10) unsigned DEFAULT NULL,
`lead_id` bigint(20) unsigned NOT NULL,
`channel` varchar(191) NOT NULL,
`channel_id` int(11) NOT NULL,
`priority` smallint(6) NOT NULL,
`max_attempts` smallint(6) NOT NULL,
`attempts` smallint(6) NOT NULL,
`success` tinyint(1) NOT NULL,
`status` varchar(191) NOT NULL,
`date_published` datetime DEFAULT NULL,
`scheduled_date` datetime DEFAULT NULL,
`last_attempt` datetime DEFAULT NULL,
`date_sent` datetime DEFAULT NULL,
`options` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
PRIMARY KEY (`id`),
KEY `bak_message_queue_date_published` (`date_published`),
KEY `bak_message_success` (`success`),
KEY `bak_message_date_sent` (`date_sent`),
KEY `bak_IDX_805B808871F7E88B` (`event_id`),
KEY `bak_message_channel_search` (`channel`,`channel_id`),
KEY `bak_message_scheduled_date` (`scheduled_date`),
KEY `bak_IDX_805B808855458D` (`lead_id`),
KEY `bak_message_priority` (`priority`),
KEY `bak_message_status_search` (`status`),
CONSTRAINT `bak_FK_805B808855458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_805B808871F7E88B` FOREIGN KEY (`event_id`) REFERENCES `bak_campaign_events` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_message_queue`
--
LOCK TABLES `bak_message_queue` WRITE;
/*!40000 ALTER TABLE `bak_message_queue` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_message_queue` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_messages`
--
DROP TABLE IF EXISTS `bak_messages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_messages` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `bak_IDX_DB021E9612469DE2` (`category_id`),
KEY `bak_date_message_added` (`date_added`),
CONSTRAINT `bak_FK_DB021E9612469DE2` FOREIGN KEY (`category_id`) REFERENCES `bak_categories` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_messages`
--
LOCK TABLES `bak_messages` WRITE;
/*!40000 ALTER TABLE `bak_messages` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_messages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_monitor_post_count`
--
DROP TABLE IF EXISTS `bak_monitor_post_count`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_monitor_post_count` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`monitor_id` int(10) unsigned DEFAULT NULL,
`post_date` date NOT NULL,
`post_count` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `bak_IDX_E3AC20CA4CE1C902` (`monitor_id`),
CONSTRAINT `bak_FK_E3AC20CA4CE1C902` FOREIGN KEY (`monitor_id`) REFERENCES `bak_monitoring` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_monitor_post_count`
--
LOCK TABLES `bak_monitor_post_count` WRITE;
/*!40000 ALTER TABLE `bak_monitor_post_count` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_monitor_post_count` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_monitoring`
--
DROP TABLE IF EXISTS `bak_monitoring`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_monitoring` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`title` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`lists` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`network_type` varchar(191) DEFAULT NULL,
`revision` int(11) NOT NULL,
`stats` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`properties` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `bak_IDX_BA4F975D12469DE2` (`category_id`),
CONSTRAINT `bak_FK_BA4F975D12469DE2` FOREIGN KEY (`category_id`) REFERENCES `bak_categories` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_monitoring`
--
LOCK TABLES `bak_monitoring` WRITE;
/*!40000 ALTER TABLE `bak_monitoring` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_monitoring` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_monitoring_leads`
--
DROP TABLE IF EXISTS `bak_monitoring_leads`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_monitoring_leads` (
`monitor_id` int(10) unsigned NOT NULL,
`lead_id` bigint(20) unsigned NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`monitor_id`,`lead_id`),
KEY `bak_IDX_45207A4A55458D` (`lead_id`),
CONSTRAINT `bak_FK_45207A4A4CE1C902` FOREIGN KEY (`monitor_id`) REFERENCES `bak_monitoring` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_45207A4A55458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_monitoring_leads`
--
LOCK TABLES `bak_monitoring_leads` WRITE;
/*!40000 ALTER TABLE `bak_monitoring_leads` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_monitoring_leads` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_notifications`
--
DROP TABLE IF EXISTS `bak_notifications`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_notifications` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned NOT NULL,
`type` varchar(25) DEFAULT NULL,
`header` varchar(512) DEFAULT NULL,
`message` longtext NOT NULL,
`date_added` datetime NOT NULL,
`icon_class` varchar(191) DEFAULT NULL,
`is_read` tinyint(1) NOT NULL,
`deduplicate` varchar(32) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `bak_notification_read_status` (`is_read`),
KEY `bak_deduplicate_date_added` (`deduplicate`,`date_added`),
KEY `bak_notification_type` (`type`),
KEY `bak_notification_user_read_status` (`is_read`,`user_id`),
KEY `bak_IDX_6000B0D3A76ED395` (`user_id`),
CONSTRAINT `bak_FK_6000B0D3A76ED395` FOREIGN KEY (`user_id`) REFERENCES `bak_users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_notifications`
--
LOCK TABLES `bak_notifications` WRITE;
/*!40000 ALTER TABLE `bak_notifications` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_notifications` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_oauth2_accesstokens`
--
DROP TABLE IF EXISTS `bak_oauth2_accesstokens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_oauth2_accesstokens` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`client_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned DEFAULT NULL,
`token` varchar(191) NOT NULL,
`expires_at` bigint(20) DEFAULT NULL,
`scope` varchar(191) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `bak_UNIQ_3A18CA5A5F37A13B` (`token`),
KEY `bak_IDX_3A18CA5AA76ED395` (`user_id`),
KEY `bak_oauth2_access_token_search` (`token`),
KEY `bak_IDX_3A18CA5A19EB6921` (`client_id`),
CONSTRAINT `bak_FK_3A18CA5A19EB6921` FOREIGN KEY (`client_id`) REFERENCES `bak_oauth2_clients` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_3A18CA5AA76ED395` FOREIGN KEY (`user_id`) REFERENCES `bak_users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_oauth2_accesstokens`
--
LOCK TABLES `bak_oauth2_accesstokens` WRITE;
/*!40000 ALTER TABLE `bak_oauth2_accesstokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_oauth2_accesstokens` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_oauth2_authcodes`
--
DROP TABLE IF EXISTS `bak_oauth2_authcodes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_oauth2_authcodes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`client_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`token` varchar(191) NOT NULL,
`expires_at` bigint(20) DEFAULT NULL,
`scope` varchar(191) DEFAULT NULL,
`redirect_uri` longtext NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `bak_UNIQ_D2B4847B5F37A13B` (`token`),
KEY `bak_IDX_D2B4847B19EB6921` (`client_id`),
KEY `bak_IDX_D2B4847BA76ED395` (`user_id`),
CONSTRAINT `bak_FK_D2B4847B19EB6921` FOREIGN KEY (`client_id`) REFERENCES `bak_oauth2_clients` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_D2B4847BA76ED395` FOREIGN KEY (`user_id`) REFERENCES `bak_users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_oauth2_authcodes`
--
LOCK TABLES `bak_oauth2_authcodes` WRITE;
/*!40000 ALTER TABLE `bak_oauth2_authcodes` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_oauth2_authcodes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_oauth2_clients`
--
DROP TABLE IF EXISTS `bak_oauth2_clients`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_oauth2_clients` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`role_id` int(10) unsigned DEFAULT NULL,
`name` varchar(191) NOT NULL,
`random_id` varchar(191) NOT NULL,
`secret` varchar(191) NOT NULL,
`redirect_uris` longtext NOT NULL COMMENT '(DC2Type:array)',
`allowed_grant_types` longtext NOT NULL COMMENT '(DC2Type:array)',
PRIMARY KEY (`id`),
KEY `bak_IDX_F9D02AE6D60322AC` (`role_id`),
KEY `bak_client_id_search` (`random_id`),
CONSTRAINT `bak_FK_F9D02AE6D60322AC` FOREIGN KEY (`role_id`) REFERENCES `bak_roles` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_oauth2_clients`
--
LOCK TABLES `bak_oauth2_clients` WRITE;
/*!40000 ALTER TABLE `bak_oauth2_clients` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_oauth2_clients` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_oauth2_refreshtokens`
--
DROP TABLE IF EXISTS `bak_oauth2_refreshtokens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_oauth2_refreshtokens` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`client_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`token` varchar(191) NOT NULL,
`expires_at` bigint(20) DEFAULT NULL,
`scope` varchar(191) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `bak_UNIQ_328C5B1B5F37A13B` (`token`),
KEY `bak_oauth2_refresh_token_search` (`token`),
KEY `bak_IDX_328C5B1B19EB6921` (`client_id`),
KEY `bak_IDX_328C5B1BA76ED395` (`user_id`),
CONSTRAINT `bak_FK_328C5B1B19EB6921` FOREIGN KEY (`client_id`) REFERENCES `bak_oauth2_clients` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_328C5B1BA76ED395` FOREIGN KEY (`user_id`) REFERENCES `bak_users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_oauth2_refreshtokens`
--
LOCK TABLES `bak_oauth2_refreshtokens` WRITE;
/*!40000 ALTER TABLE `bak_oauth2_refreshtokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_oauth2_refreshtokens` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_oauth2_user_client_xref`
--
DROP TABLE IF EXISTS `bak_oauth2_user_client_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_oauth2_user_client_xref` (
`client_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`client_id`,`user_id`),
KEY `bak_IDX_1AE34413A76ED395` (`user_id`),
CONSTRAINT `bak_FK_1AE3441319EB6921` FOREIGN KEY (`client_id`) REFERENCES `bak_oauth2_clients` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_1AE34413A76ED395` FOREIGN KEY (`user_id`) REFERENCES `bak_users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_oauth2_user_client_xref`
--
LOCK TABLES `bak_oauth2_user_client_xref` WRITE;
/*!40000 ALTER TABLE `bak_oauth2_user_client_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_oauth2_user_client_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_page_hits`
--
DROP TABLE IF EXISTS `bak_page_hits`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_page_hits` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`page_id` int(10) unsigned DEFAULT NULL,
`redirect_id` bigint(20) unsigned DEFAULT NULL,
`email_id` int(10) unsigned DEFAULT NULL,
`lead_id` bigint(20) unsigned DEFAULT NULL,
`ip_id` int(10) unsigned DEFAULT NULL,
`device_id` bigint(20) unsigned DEFAULT NULL,
`date_hit` datetime NOT NULL,
`date_left` datetime DEFAULT NULL,
`country` varchar(191) DEFAULT NULL,
`region` varchar(191) DEFAULT NULL,
`city` varchar(191) DEFAULT NULL,
`isp` varchar(191) DEFAULT NULL,
`organization` varchar(191) DEFAULT NULL,
`code` int(11) NOT NULL,
`referer` longtext DEFAULT NULL,
`url` longtext DEFAULT NULL,
`url_title` varchar(191) DEFAULT NULL,
`user_agent` longtext DEFAULT NULL,
`remote_host` varchar(191) DEFAULT NULL,
`page_language` varchar(191) DEFAULT NULL,
`browser_languages` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`tracking_id` varchar(191) NOT NULL,
`source` varchar(191) DEFAULT NULL,
`source_id` int(11) DEFAULT NULL,
`query` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
PRIMARY KEY (`id`),
KEY `bak_date_hit_left_index` (`date_hit`,`date_left`),
KEY `bak_page_hit_code_search` (`code`),
KEY `bak_IDX_9D4B70F1A03F5E9F` (`ip_id`),
KEY `bak_IDX_9D4B70F1B42D874D` (`redirect_id`),
KEY `bak_page_hit_source_search` (`source`,`source_id`),
KEY `bak_IDX_9D4B70F194A4C7D4` (`device_id`),
KEY `bak_IDX_9D4B70F1A832C1C9` (`email_id`),
KEY `bak_page_hit_url` (`url`(128)),
KEY `bak_page_hit_tracking_search` (`tracking_id`),
KEY `bak_IDX_9D4B70F155458D` (`lead_id`),
KEY `bak_IDX_9D4B70F1C4663E4` (`page_id`),
CONSTRAINT `bak_FK_9D4B70F155458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_9D4B70F194A4C7D4` FOREIGN KEY (`device_id`) REFERENCES `bak_lead_devices` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_9D4B70F1A03F5E9F` FOREIGN KEY (`ip_id`) REFERENCES `bak_ip_addresses` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_9D4B70F1A832C1C9` FOREIGN KEY (`email_id`) REFERENCES `bak_emails` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_9D4B70F1B42D874D` FOREIGN KEY (`redirect_id`) REFERENCES `bak_page_redirects` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_9D4B70F1C4663E4` FOREIGN KEY (`page_id`) REFERENCES `bak_pages` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_page_hits`
--
LOCK TABLES `bak_page_hits` WRITE;
/*!40000 ALTER TABLE `bak_page_hits` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_page_hits` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_page_projects_xref`
--
DROP TABLE IF EXISTS `bak_page_projects_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_page_projects_xref` (
`page_id` int(10) unsigned NOT NULL,
`project_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`page_id`,`project_id`),
KEY `bak_IDX_CB257C2D166D1F9C` (`project_id`),
CONSTRAINT `bak_FK_CB257C2D166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `bak_projects` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_CB257C2DC4663E4` FOREIGN KEY (`page_id`) REFERENCES `bak_pages` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_page_projects_xref`
--
LOCK TABLES `bak_page_projects_xref` WRITE;
/*!40000 ALTER TABLE `bak_page_projects_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_page_projects_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_page_redirects`
--
DROP TABLE IF EXISTS `bak_page_redirects`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_page_redirects` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`redirect_id` varchar(25) NOT NULL,
`url` longtext NOT NULL,
`hits` int(11) NOT NULL,
`unique_hits` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_page_redirects`
--
LOCK TABLES `bak_page_redirects` WRITE;
/*!40000 ALTER TABLE `bak_page_redirects` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_page_redirects` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_pages`
--
DROP TABLE IF EXISTS `bak_pages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_pages` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`translation_parent_id` int(10) unsigned DEFAULT NULL,
`variant_parent_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`title` varchar(191) NOT NULL,
`alias` varchar(191) NOT NULL,
`template` varchar(191) DEFAULT NULL,
`custom_html` longtext DEFAULT NULL,
`content` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`hits` int(11) NOT NULL,
`unique_hits` int(11) NOT NULL,
`variant_hits` int(11) NOT NULL,
`revision` int(11) NOT NULL,
`meta_description` varchar(191) DEFAULT NULL,
`head_script` longtext DEFAULT NULL,
`footer_script` longtext DEFAULT NULL,
`redirect_type` varchar(100) DEFAULT NULL,
`redirect_url` varchar(2048) DEFAULT NULL,
`is_preference_center` tinyint(1) DEFAULT NULL,
`no_index` tinyint(1) DEFAULT NULL,
`public_preview` tinyint(1) DEFAULT NULL,
`lang` varchar(191) NOT NULL,
`variant_settings` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`variant_start_date` datetime DEFAULT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `bak_IDX_2074E57512469DE2` (`category_id`),
KEY `bak_IDX_2074E5759091A2FB` (`translation_parent_id`),
KEY `bak_IDX_2074E57591861123` (`variant_parent_id`),
KEY `bak_page_alias_search` (`alias`),
CONSTRAINT `bak_FK_2074E57512469DE2` FOREIGN KEY (`category_id`) REFERENCES `bak_categories` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_2074E5759091A2FB` FOREIGN KEY (`translation_parent_id`) REFERENCES `bak_pages` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_2074E57591861123` FOREIGN KEY (`variant_parent_id`) REFERENCES `bak_pages` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_pages`
--
LOCK TABLES `bak_pages` WRITE;
/*!40000 ALTER TABLE `bak_pages` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_pages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_pages_draft`
--
DROP TABLE IF EXISTS `bak_pages_draft`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_pages_draft` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`page_id` int(10) unsigned NOT NULL,
`html` longtext DEFAULT NULL,
`template` varchar(191) DEFAULT NULL,
`public_preview` tinyint(1) NOT NULL DEFAULT 1,
PRIMARY KEY (`id`),
UNIQUE KEY `bak_UNIQ_AB8FDFFEC4663E4` (`page_id`),
CONSTRAINT `bak_FK_AB8FDFFEC4663E4` FOREIGN KEY (`page_id`) REFERENCES `bak_pages` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_pages_draft`
--
LOCK TABLES `bak_pages_draft` WRITE;
/*!40000 ALTER TABLE `bak_pages_draft` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_pages_draft` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_permissions`
--
DROP TABLE IF EXISTS `bak_permissions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_permissions` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`role_id` int(10) unsigned NOT NULL,
`bundle` varchar(50) NOT NULL,
`name` varchar(50) NOT NULL,
`bitwise` int(11) NOT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
UNIQUE KEY `bak_unique_perm` (`bundle`,`name`,`role_id`),
KEY `bak_IDX_2DEDCC6FD60322AC` (`role_id`),
CONSTRAINT `bak_FK_2DEDCC6FD60322AC` FOREIGN KEY (`role_id`) REFERENCES `bak_roles` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_permissions`
--
LOCK TABLES `bak_permissions` WRITE;
/*!40000 ALTER TABLE `bak_permissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_permissions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_plugin_integration_settings`
--
DROP TABLE IF EXISTS `bak_plugin_integration_settings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_plugin_integration_settings` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`plugin_id` int(10) unsigned DEFAULT NULL,
`name` varchar(191) NOT NULL,
`is_published` tinyint(1) NOT NULL,
`supported_features` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`api_keys` longtext NOT NULL COMMENT '(DC2Type:array)',
`feature_settings` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
PRIMARY KEY (`id`),
KEY `bak_IDX_941A2CE0EC942BCF` (`plugin_id`),
CONSTRAINT `bak_FK_941A2CE0EC942BCF` FOREIGN KEY (`plugin_id`) REFERENCES `bak_plugins` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_plugin_integration_settings`
--
LOCK TABLES `bak_plugin_integration_settings` WRITE;
/*!40000 ALTER TABLE `bak_plugin_integration_settings` DISABLE KEYS */;
INSERT INTO `bak_plugin_integration_settings` VALUES
(1,1,'GrapesJsBuilder',1,'a:0:{}','a:0:{}','a:0:{}');
/*!40000 ALTER TABLE `bak_plugin_integration_settings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_plugins`
--
DROP TABLE IF EXISTS `bak_plugins`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_plugins` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`is_missing` tinyint(1) NOT NULL,
`bundle` varchar(50) NOT NULL,
`version` varchar(191) DEFAULT NULL,
`author` varchar(191) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `bak_unique_bundle` (`bundle`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_plugins`
--
LOCK TABLES `bak_plugins` WRITE;
/*!40000 ALTER TABLE `bak_plugins` DISABLE KEYS */;
INSERT INTO `bak_plugins` VALUES
(1,'GrapesJS Builder','GrapesJS Builder with MJML support for Mautic',0,'GrapesJsBuilderBundle','1.0.0','Mautic Community');
/*!40000 ALTER TABLE `bak_plugins` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_point_group_contact_score`
--
DROP TABLE IF EXISTS `bak_point_group_contact_score`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_point_group_contact_score` (
`contact_id` bigint(20) unsigned NOT NULL,
`group_id` int(10) unsigned NOT NULL,
`score` int(11) NOT NULL,
PRIMARY KEY (`contact_id`,`group_id`),
KEY `bak_IDX_9D85A703FE54D947` (`group_id`),
CONSTRAINT `bak_FK_9D85A703E7A1254A` FOREIGN KEY (`contact_id`) REFERENCES `bak_leads` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_9D85A703FE54D947` FOREIGN KEY (`group_id`) REFERENCES `bak_point_groups` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_point_group_contact_score`
--
LOCK TABLES `bak_point_group_contact_score` WRITE;
/*!40000 ALTER TABLE `bak_point_group_contact_score` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_point_group_contact_score` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_point_groups`
--
DROP TABLE IF EXISTS `bak_point_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_point_groups` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_point_groups`
--
LOCK TABLES `bak_point_groups` WRITE;
/*!40000 ALTER TABLE `bak_point_groups` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_point_groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_point_lead_action_log`
--
DROP TABLE IF EXISTS `bak_point_lead_action_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_point_lead_action_log` (
`point_id` int(10) unsigned NOT NULL,
`lead_id` bigint(20) unsigned NOT NULL,
`ip_id` int(10) unsigned DEFAULT NULL,
`date_fired` datetime NOT NULL,
PRIMARY KEY (`point_id`,`lead_id`),
KEY `bak_IDX_6DF94A5655458D` (`lead_id`),
KEY `bak_IDX_6DF94A56A03F5E9F` (`ip_id`),
CONSTRAINT `bak_FK_6DF94A5655458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_6DF94A56A03F5E9F` FOREIGN KEY (`ip_id`) REFERENCES `bak_ip_addresses` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_6DF94A56C028CEA2` FOREIGN KEY (`point_id`) REFERENCES `bak_points` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_point_lead_action_log`
--
LOCK TABLES `bak_point_lead_action_log` WRITE;
/*!40000 ALTER TABLE `bak_point_lead_action_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_point_lead_action_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_point_lead_event_log`
--
DROP TABLE IF EXISTS `bak_point_lead_event_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_point_lead_event_log` (
`event_id` int(10) unsigned NOT NULL,
`lead_id` bigint(20) unsigned NOT NULL,
`ip_id` int(10) unsigned DEFAULT NULL,
`date_fired` datetime NOT NULL,
PRIMARY KEY (`event_id`,`lead_id`),
KEY `bak_IDX_C2A3BDBAA03F5E9F` (`ip_id`),
KEY `bak_IDX_C2A3BDBA55458D` (`lead_id`),
CONSTRAINT `bak_FK_C2A3BDBA55458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_C2A3BDBA71F7E88B` FOREIGN KEY (`event_id`) REFERENCES `bak_point_trigger_events` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_C2A3BDBAA03F5E9F` FOREIGN KEY (`ip_id`) REFERENCES `bak_ip_addresses` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_point_lead_event_log`
--
LOCK TABLES `bak_point_lead_event_log` WRITE;
/*!40000 ALTER TABLE `bak_point_lead_event_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_point_lead_event_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_point_projects_xref`
--
DROP TABLE IF EXISTS `bak_point_projects_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_point_projects_xref` (
`point_id` int(10) unsigned NOT NULL,
`project_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`point_id`,`project_id`),
KEY `bak_IDX_10D626AE166D1F9C` (`project_id`),
CONSTRAINT `bak_FK_10D626AE166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `bak_projects` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_10D626AEC028CEA2` FOREIGN KEY (`point_id`) REFERENCES `bak_points` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_point_projects_xref`
--
LOCK TABLES `bak_point_projects_xref` WRITE;
/*!40000 ALTER TABLE `bak_point_projects_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_point_projects_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_point_trigger_events`
--
DROP TABLE IF EXISTS `bak_point_trigger_events`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_point_trigger_events` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`trigger_id` int(10) unsigned NOT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`type` varchar(50) NOT NULL,
`action_order` int(11) NOT NULL,
`properties` longtext NOT NULL COMMENT '(DC2Type:array)',
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `bak_trigger_type_search` (`type`),
KEY `bak_IDX_D5669585FDDDCD6` (`trigger_id`),
CONSTRAINT `bak_FK_D5669585FDDDCD6` FOREIGN KEY (`trigger_id`) REFERENCES `bak_point_triggers` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_point_trigger_events`
--
LOCK TABLES `bak_point_trigger_events` WRITE;
/*!40000 ALTER TABLE `bak_point_trigger_events` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_point_trigger_events` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_point_trigger_projects_xref`
--
DROP TABLE IF EXISTS `bak_point_trigger_projects_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_point_trigger_projects_xref` (
`point_trigger_id` int(10) unsigned NOT NULL,
`project_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`point_trigger_id`,`project_id`),
KEY `bak_IDX_B89C954166D1F9C` (`project_id`),
CONSTRAINT `bak_FK_B89C954166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `bak_projects` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_B89C95483A8FF7C` FOREIGN KEY (`point_trigger_id`) REFERENCES `bak_point_triggers` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_point_trigger_projects_xref`
--
LOCK TABLES `bak_point_trigger_projects_xref` WRITE;
/*!40000 ALTER TABLE `bak_point_trigger_projects_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_point_trigger_projects_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_point_triggers`
--
DROP TABLE IF EXISTS `bak_point_triggers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_point_triggers` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`group_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`points` int(11) NOT NULL,
`color` varchar(7) NOT NULL,
`trigger_existing_leads` tinyint(1) NOT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `bak_IDX_9CABD32F12469DE2` (`category_id`),
KEY `bak_IDX_9CABD32FFE54D947` (`group_id`),
CONSTRAINT `bak_FK_9CABD32F12469DE2` FOREIGN KEY (`category_id`) REFERENCES `bak_categories` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_9CABD32FFE54D947` FOREIGN KEY (`group_id`) REFERENCES `bak_point_groups` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_point_triggers`
--
LOCK TABLES `bak_point_triggers` WRITE;
/*!40000 ALTER TABLE `bak_point_triggers` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_point_triggers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_points`
--
DROP TABLE IF EXISTS `bak_points`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_points` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`group_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`type` varchar(50) NOT NULL,
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`repeatable` tinyint(1) NOT NULL,
`delta` int(11) NOT NULL,
`properties` longtext NOT NULL COMMENT '(DC2Type:array)',
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `bak_point_type_search` (`type`),
KEY `bak_IDX_27BA8E2912469DE2` (`category_id`),
KEY `bak_IDX_27BA8E29FE54D947` (`group_id`),
CONSTRAINT `bak_FK_27BA8E2912469DE2` FOREIGN KEY (`category_id`) REFERENCES `bak_categories` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_27BA8E29FE54D947` FOREIGN KEY (`group_id`) REFERENCES `bak_point_groups` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_points`
--
LOCK TABLES `bak_points` WRITE;
/*!40000 ALTER TABLE `bak_points` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_points` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_projects`
--
DROP TABLE IF EXISTS `bak_projects`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_projects` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`properties` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT '(DC2Type:json)' CHECK (json_valid(`properties`)),
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `bak_project_name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_projects`
--
LOCK TABLES `bak_projects` WRITE;
/*!40000 ALTER TABLE `bak_projects` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_projects` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_push_ids`
--
DROP TABLE IF EXISTS `bak_push_ids`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_push_ids` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`lead_id` bigint(20) unsigned DEFAULT NULL,
`push_id` varchar(191) NOT NULL,
`enabled` tinyint(1) NOT NULL,
`mobile` tinyint(1) NOT NULL,
PRIMARY KEY (`id`),
KEY `bak_IDX_4F2393E855458D` (`lead_id`),
CONSTRAINT `bak_FK_4F2393E855458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_push_ids`
--
LOCK TABLES `bak_push_ids` WRITE;
/*!40000 ALTER TABLE `bak_push_ids` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_push_ids` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_push_notification_list_xref`
--
DROP TABLE IF EXISTS `bak_push_notification_list_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_push_notification_list_xref` (
`notification_id` int(10) unsigned NOT NULL,
`leadlist_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`notification_id`,`leadlist_id`),
KEY `bak_IDX_473919EFB9FC8874` (`leadlist_id`),
CONSTRAINT `bak_FK_473919EFB9FC8874` FOREIGN KEY (`leadlist_id`) REFERENCES `bak_lead_lists` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_473919EFEF1A9D84` FOREIGN KEY (`notification_id`) REFERENCES `bak_push_notifications` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_push_notification_list_xref`
--
LOCK TABLES `bak_push_notification_list_xref` WRITE;
/*!40000 ALTER TABLE `bak_push_notification_list_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_push_notification_list_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_push_notification_stats`
--
DROP TABLE IF EXISTS `bak_push_notification_stats`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_push_notification_stats` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`notification_id` int(10) unsigned DEFAULT NULL,
`lead_id` bigint(20) unsigned DEFAULT NULL,
`list_id` int(10) unsigned DEFAULT NULL,
`ip_id` int(10) unsigned DEFAULT NULL,
`date_sent` datetime NOT NULL,
`date_read` datetime DEFAULT NULL,
`is_clicked` tinyint(1) NOT NULL,
`date_clicked` datetime DEFAULT NULL,
`tracking_hash` varchar(191) DEFAULT NULL,
`retry_count` int(11) DEFAULT NULL,
`source` varchar(191) DEFAULT NULL,
`source_id` int(11) DEFAULT NULL,
`tokens` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`click_count` int(11) DEFAULT NULL,
`last_clicked` datetime DEFAULT NULL,
`click_details` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
PRIMARY KEY (`id`),
KEY `bak_stat_notification_clicked_search` (`is_clicked`),
KEY `bak_IDX_DE63695EA03F5E9F` (`ip_id`),
KEY `bak_IDX_DE63695EEF1A9D84` (`notification_id`),
KEY `bak_stat_notification_hash_search` (`tracking_hash`),
KEY `bak_stat_notification_search` (`notification_id`,`lead_id`),
KEY `bak_IDX_DE63695E55458D` (`lead_id`),
KEY `bak_stat_notification_source_search` (`source`,`source_id`),
KEY `bak_IDX_DE63695E3DAE168B` (`list_id`),
CONSTRAINT `bak_FK_DE63695E3DAE168B` FOREIGN KEY (`list_id`) REFERENCES `bak_lead_lists` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_DE63695E55458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_DE63695EA03F5E9F` FOREIGN KEY (`ip_id`) REFERENCES `bak_ip_addresses` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_DE63695EEF1A9D84` FOREIGN KEY (`notification_id`) REFERENCES `bak_push_notifications` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_push_notification_stats`
--
LOCK TABLES `bak_push_notification_stats` WRITE;
/*!40000 ALTER TABLE `bak_push_notification_stats` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_push_notification_stats` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_push_notifications`
--
DROP TABLE IF EXISTS `bak_push_notifications`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_push_notifications` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`translation_parent_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`url` longtext DEFAULT NULL,
`heading` longtext NOT NULL,
`message` longtext NOT NULL,
`button` longtext DEFAULT NULL,
`utm_tags` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`notification_type` longtext DEFAULT NULL,
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`read_count` int(11) NOT NULL,
`sent_count` int(11) NOT NULL,
`mobile` tinyint(1) NOT NULL,
`mobileSettings` longtext NOT NULL COMMENT '(DC2Type:array)',
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
`lang` varchar(191) NOT NULL,
PRIMARY KEY (`id`),
KEY `bak_IDX_5B9B7E4F9091A2FB` (`translation_parent_id`),
KEY `bak_IDX_5B9B7E4F12469DE2` (`category_id`),
CONSTRAINT `bak_FK_5B9B7E4F12469DE2` FOREIGN KEY (`category_id`) REFERENCES `bak_categories` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_5B9B7E4F9091A2FB` FOREIGN KEY (`translation_parent_id`) REFERENCES `bak_push_notifications` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_push_notifications`
--
LOCK TABLES `bak_push_notifications` WRITE;
/*!40000 ALTER TABLE `bak_push_notifications` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_push_notifications` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_reports`
--
DROP TABLE IF EXISTS `bak_reports`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_reports` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`system` tinyint(1) NOT NULL,
`source` varchar(191) NOT NULL,
`columns` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`filters` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`table_order` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`graphs` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`group_by` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`aggregators` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`settings` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '(DC2Type:json)' CHECK (json_valid(`settings`)),
`is_scheduled` tinyint(1) NOT NULL,
`schedule_unit` varchar(191) DEFAULT NULL,
`to_address` varchar(191) DEFAULT NULL,
`schedule_day` varchar(191) DEFAULT NULL,
`schedule_month_frequency` varchar(191) DEFAULT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_reports`
--
LOCK TABLES `bak_reports` WRITE;
/*!40000 ALTER TABLE `bak_reports` DISABLE KEYS */;
INSERT INTO `bak_reports` VALUES
(1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Visits published Pages',NULL,1,'page.hits','a:7:{i:0;s:11:\"ph.date_hit\";i:1;s:6:\"ph.url\";i:2;s:12:\"ph.url_title\";i:3;s:10:\"ph.referer\";i:4;s:12:\"i.ip_address\";i:5;s:7:\"ph.city\";i:6;s:10:\"ph.country\";}','a:2:{i:0;a:3:{s:6:\"column\";s:7:\"ph.code\";s:9:\"condition\";s:2:\"eq\";s:5:\"value\";s:3:\"200\";}i:1;a:3:{s:6:\"column\";s:14:\"p.is_published\";s:9:\"condition\";s:2:\"eq\";s:5:\"value\";s:1:\"1\";}}','a:1:{i:0;a:2:{s:6:\"column\";s:11:\"ph.date_hit\";s:9:\"direction\";s:3:\"ASC\";}}','a:8:{i:0;s:35:\"mautic.page.graph.line.time.on.site\";i:1;s:27:\"mautic.page.graph.line.hits\";i:2;s:38:\"mautic.page.graph.pie.new.vs.returning\";i:3;s:31:\"mautic.page.graph.pie.languages\";i:4;s:34:\"mautic.page.graph.pie.time.on.site\";i:5;s:27:\"mautic.page.table.referrers\";i:6;s:30:\"mautic.page.table.most.visited\";i:7;s:37:\"mautic.page.table.most.visited.unique\";}','a:0:{}','a:0:{}','[]',0,NULL,NULL,NULL,NULL,'5ebdb702-8e26-40e2-afbe-2776d8bff770'),
(2,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Downloads of all Assets',NULL,1,'asset.downloads','a:7:{i:0;s:16:\"ad.date_download\";i:1;s:7:\"a.title\";i:2;s:12:\"i.ip_address\";i:3;s:11:\"l.firstname\";i:4;s:10:\"l.lastname\";i:5;s:7:\"l.email\";i:6;s:4:\"a.id\";}','a:1:{i:0;a:3:{s:6:\"column\";s:14:\"a.is_published\";s:9:\"condition\";s:2:\"eq\";s:5:\"value\";s:1:\"1\";}}','a:1:{i:0;a:2:{s:6:\"column\";s:16:\"ad.date_download\";s:9:\"direction\";s:3:\"ASC\";}}','a:4:{i:0;s:33:\"mautic.asset.graph.line.downloads\";i:1;s:31:\"mautic.asset.graph.pie.statuses\";i:2;s:34:\"mautic.asset.table.most.downloaded\";i:3;s:32:\"mautic.asset.table.top.referrers\";}','a:0:{}','a:0:{}','[]',0,NULL,NULL,NULL,NULL,'ed2906c1-8b51-4eeb-840c-b12fde887a8c'),
(3,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Submissions of published Forms',NULL,1,'form.submissions','a:0:{}','a:1:{i:1;a:3:{s:6:\"column\";s:14:\"f.is_published\";s:9:\"condition\";s:2:\"eq\";s:5:\"value\";s:1:\"1\";}}','a:0:{}','a:3:{i:0;s:34:\"mautic.form.graph.line.submissions\";i:1;s:32:\"mautic.form.table.most.submitted\";i:2;s:31:\"mautic.form.table.top.referrers\";}','a:0:{}','a:0:{}','[]',0,NULL,NULL,NULL,NULL,'597880b0-988f-4492-b2f7-39c72362ecda'),
(4,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'All Emails',NULL,1,'email.stats','a:5:{i:0;s:12:\"es.date_sent\";i:1;s:12:\"es.date_read\";i:2;s:9:\"e.subject\";i:3;s:16:\"es.email_address\";i:4;s:4:\"e.id\";}','a:1:{i:0;a:3:{s:6:\"column\";s:14:\"e.is_published\";s:9:\"condition\";s:2:\"eq\";s:5:\"value\";s:1:\"1\";}}','a:1:{i:0;a:2:{s:6:\"column\";s:12:\"es.date_sent\";s:9:\"direction\";s:3:\"ASC\";}}','a:6:{i:0;s:29:\"mautic.email.graph.line.stats\";i:1;s:42:\"mautic.email.graph.pie.ignored.read.failed\";i:2;s:35:\"mautic.email.table.most.emails.read\";i:3;s:35:\"mautic.email.table.most.emails.sent\";i:4;s:43:\"mautic.email.table.most.emails.read.percent\";i:5;s:37:\"mautic.email.table.most.emails.failed\";}','a:0:{}','a:0:{}','[]',0,NULL,NULL,NULL,NULL,'ca0ce83c-30b3-4214-b8b1-65998fe48389'),
(5,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Leads and Points',NULL,1,'lead.pointlog','a:7:{i:0;s:13:\"lp.date_added\";i:1;s:7:\"lp.type\";i:2;s:13:\"lp.event_name\";i:3;s:11:\"l.firstname\";i:4;s:10:\"l.lastname\";i:5;s:7:\"l.email\";i:6;s:8:\"lp.delta\";}','a:0:{}','a:1:{i:0;a:2:{s:6:\"column\";s:13:\"lp.date_added\";s:9:\"direction\";s:3:\"ASC\";}}','a:6:{i:0;s:29:\"mautic.lead.graph.line.points\";i:1;s:29:\"mautic.lead.table.most.points\";i:2;s:29:\"mautic.lead.table.top.actions\";i:3;s:28:\"mautic.lead.table.top.cities\";i:4;s:31:\"mautic.lead.table.top.countries\";i:5;s:28:\"mautic.lead.table.top.events\";}','a:0:{}','a:0:{}','[]',0,NULL,NULL,NULL,NULL,'b4857b75-966d-42a1-b453-588432ca10e6');
/*!40000 ALTER TABLE `bak_reports` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_reports_schedulers`
--
DROP TABLE IF EXISTS `bak_reports_schedulers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_reports_schedulers` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`report_id` int(10) unsigned NOT NULL,
`schedule_date` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `bak_IDX_C74CA6B84BD2A4C0` (`report_id`),
CONSTRAINT `bak_FK_C74CA6B84BD2A4C0` FOREIGN KEY (`report_id`) REFERENCES `bak_reports` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_reports_schedulers`
--
LOCK TABLES `bak_reports_schedulers` WRITE;
/*!40000 ALTER TABLE `bak_reports_schedulers` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_reports_schedulers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_roles`
--
DROP TABLE IF EXISTS `bak_roles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_roles` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`is_admin` tinyint(1) NOT NULL,
`readable_permissions` longtext NOT NULL COMMENT '(DC2Type:array)',
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_roles`
--
LOCK TABLES `bak_roles` WRITE;
/*!40000 ALTER TABLE `bak_roles` DISABLE KEYS */;
INSERT INTO `bak_roles` VALUES
(1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Administrator','Full system access',1,'N;','e0655d7f-91c8-4060-8775-0cc58335d9d1');
/*!40000 ALTER TABLE `bak_roles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_saml_id_entry`
--
DROP TABLE IF EXISTS `bak_saml_id_entry`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_saml_id_entry` (
`id` varchar(191) NOT NULL,
`entity_id` varchar(191) NOT NULL,
`expiryTimestamp` int(11) NOT NULL,
PRIMARY KEY (`id`,`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_saml_id_entry`
--
LOCK TABLES `bak_saml_id_entry` WRITE;
/*!40000 ALTER TABLE `bak_saml_id_entry` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_saml_id_entry` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_sms_message_list_xref`
--
DROP TABLE IF EXISTS `bak_sms_message_list_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_sms_message_list_xref` (
`sms_id` int(10) unsigned NOT NULL,
`leadlist_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`sms_id`,`leadlist_id`),
KEY `bak_IDX_B032FC2EB9FC8874` (`leadlist_id`),
CONSTRAINT `bak_FK_B032FC2EB9FC8874` FOREIGN KEY (`leadlist_id`) REFERENCES `bak_lead_lists` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_B032FC2EBD5C7E60` FOREIGN KEY (`sms_id`) REFERENCES `bak_sms_messages` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_sms_message_list_xref`
--
LOCK TABLES `bak_sms_message_list_xref` WRITE;
/*!40000 ALTER TABLE `bak_sms_message_list_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_sms_message_list_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_sms_message_stats`
--
DROP TABLE IF EXISTS `bak_sms_message_stats`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_sms_message_stats` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`sms_id` int(10) unsigned DEFAULT NULL,
`lead_id` bigint(20) unsigned DEFAULT NULL,
`list_id` int(10) unsigned DEFAULT NULL,
`ip_id` int(10) unsigned DEFAULT NULL,
`date_sent` datetime NOT NULL,
`is_failed` tinyint(1) DEFAULT NULL,
`tracking_hash` varchar(191) DEFAULT NULL,
`source` varchar(191) DEFAULT NULL,
`source_id` int(11) DEFAULT NULL,
`tokens` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`details` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT '(DC2Type:json)' CHECK (json_valid(`details`)),
PRIMARY KEY (`id`),
KEY `bak_IDX_FE1BAE93DAE168B` (`list_id`),
KEY `bak_stat_sms_failed_search` (`is_failed`),
KEY `bak_stat_sms_hash_search` (`tracking_hash`),
KEY `bak_IDX_FE1BAE9A03F5E9F` (`ip_id`),
KEY `bak_IDX_FE1BAE9BD5C7E60` (`sms_id`),
KEY `bak_stat_sms_source_search` (`source`,`source_id`),
KEY `bak_stat_sms_search` (`sms_id`,`lead_id`),
KEY `bak_IDX_FE1BAE955458D` (`lead_id`),
CONSTRAINT `bak_FK_FE1BAE93DAE168B` FOREIGN KEY (`list_id`) REFERENCES `bak_lead_lists` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_FE1BAE955458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_FE1BAE9A03F5E9F` FOREIGN KEY (`ip_id`) REFERENCES `bak_ip_addresses` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_FE1BAE9BD5C7E60` FOREIGN KEY (`sms_id`) REFERENCES `bak_sms_messages` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_sms_message_stats`
--
LOCK TABLES `bak_sms_message_stats` WRITE;
/*!40000 ALTER TABLE `bak_sms_message_stats` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_sms_message_stats` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_sms_messages`
--
DROP TABLE IF EXISTS `bak_sms_messages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_sms_messages` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`translation_parent_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`message` longtext NOT NULL,
`sms_type` longtext DEFAULT NULL,
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`sent_count` int(11) NOT NULL,
`lang` varchar(191) NOT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `bak_IDX_BDF43F9712469DE2` (`category_id`),
KEY `bak_IDX_BDF43F979091A2FB` (`translation_parent_id`),
CONSTRAINT `bak_FK_BDF43F9712469DE2` FOREIGN KEY (`category_id`) REFERENCES `bak_categories` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_BDF43F979091A2FB` FOREIGN KEY (`translation_parent_id`) REFERENCES `bak_sms_messages` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_sms_messages`
--
LOCK TABLES `bak_sms_messages` WRITE;
/*!40000 ALTER TABLE `bak_sms_messages` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_sms_messages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_sms_projects_xref`
--
DROP TABLE IF EXISTS `bak_sms_projects_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_sms_projects_xref` (
`sms_id` int(10) unsigned NOT NULL,
`project_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`sms_id`,`project_id`),
KEY `bak_IDX_FDFF2EBE166D1F9C` (`project_id`),
CONSTRAINT `bak_FK_FDFF2EBE166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `bak_projects` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_FDFF2EBEBD5C7E60` FOREIGN KEY (`sms_id`) REFERENCES `bak_sms_messages` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_sms_projects_xref`
--
LOCK TABLES `bak_sms_projects_xref` WRITE;
/*!40000 ALTER TABLE `bak_sms_projects_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_sms_projects_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_stage_lead_action_log`
--
DROP TABLE IF EXISTS `bak_stage_lead_action_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_stage_lead_action_log` (
`stage_id` int(10) unsigned NOT NULL,
`lead_id` bigint(20) unsigned NOT NULL,
`ip_id` int(10) unsigned DEFAULT NULL,
`date_fired` datetime NOT NULL,
PRIMARY KEY (`stage_id`,`lead_id`),
KEY `bak_IDX_A506AFBEA03F5E9F` (`ip_id`),
KEY `bak_IDX_A506AFBE55458D` (`lead_id`),
CONSTRAINT `bak_FK_A506AFBE2298D193` FOREIGN KEY (`stage_id`) REFERENCES `bak_stages` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_A506AFBE55458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_A506AFBEA03F5E9F` FOREIGN KEY (`ip_id`) REFERENCES `bak_ip_addresses` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_stage_lead_action_log`
--
LOCK TABLES `bak_stage_lead_action_log` WRITE;
/*!40000 ALTER TABLE `bak_stage_lead_action_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_stage_lead_action_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_stage_projects_xref`
--
DROP TABLE IF EXISTS `bak_stage_projects_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_stage_projects_xref` (
`stage_id` int(10) unsigned NOT NULL,
`project_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`stage_id`,`project_id`),
KEY `bak_IDX_A6068A96166D1F9C` (`project_id`),
CONSTRAINT `bak_FK_A6068A96166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `bak_projects` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_A6068A962298D193` FOREIGN KEY (`stage_id`) REFERENCES `bak_stages` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_stage_projects_xref`
--
LOCK TABLES `bak_stage_projects_xref` WRITE;
/*!40000 ALTER TABLE `bak_stage_projects_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_stage_projects_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_stages`
--
DROP TABLE IF EXISTS `bak_stages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_stages` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`weight` int(11) NOT NULL,
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `bak_IDX_2FA26A6412469DE2` (`category_id`),
CONSTRAINT `bak_FK_2FA26A6412469DE2` FOREIGN KEY (`category_id`) REFERENCES `bak_categories` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_stages`
--
LOCK TABLES `bak_stages` WRITE;
/*!40000 ALTER TABLE `bak_stages` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_stages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_sync_object_field_change_report`
--
DROP TABLE IF EXISTS `bak_sync_object_field_change_report`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_sync_object_field_change_report` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`integration` varchar(191) NOT NULL,
`object_id` bigint(20) unsigned NOT NULL,
`object_type` varchar(191) NOT NULL,
`modified_at` datetime NOT NULL,
`column_name` varchar(191) NOT NULL,
`column_type` varchar(191) NOT NULL,
`column_value` longtext NOT NULL,
PRIMARY KEY (`id`),
KEY `bak_integration_object_composite_key` (`integration`,`object_type`,`object_id`,`column_name`),
KEY `bak_object_composite_key` (`object_type`,`object_id`,`column_name`),
KEY `bak_integration_object_type_modification_composite_key` (`integration`,`object_type`,`modified_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_sync_object_field_change_report`
--
LOCK TABLES `bak_sync_object_field_change_report` WRITE;
/*!40000 ALTER TABLE `bak_sync_object_field_change_report` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_sync_object_field_change_report` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_sync_object_mapping`
--
DROP TABLE IF EXISTS `bak_sync_object_mapping`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_sync_object_mapping` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`date_created` datetime NOT NULL,
`integration` varchar(191) NOT NULL,
`internal_object_name` varchar(191) NOT NULL,
`internal_object_id` bigint(20) unsigned NOT NULL,
`integration_object_name` varchar(191) NOT NULL,
`integration_object_id` varchar(191) NOT NULL,
`last_sync_date` datetime NOT NULL,
`internal_storage` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT '(DC2Type:json)' CHECK (json_valid(`internal_storage`)),
`is_deleted` tinyint(1) NOT NULL,
`integration_reference_id` varchar(191) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `bak_integration_reference` (`integration`,`integration_object_name`,`integration_reference_id`,`integration_object_id`),
KEY `bak_integration_last_sync_date` (`integration`,`last_sync_date`),
KEY `bak_integration_integration_object_name_last_sync_date` (`integration`,`internal_object_name`,`last_sync_date`),
KEY `bak_internal_object_id_idx` (`internal_object_id`),
KEY `bak_integration_object` (`integration`,`integration_object_name`,`integration_object_id`,`integration_reference_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_sync_object_mapping`
--
LOCK TABLES `bak_sync_object_mapping` WRITE;
/*!40000 ALTER TABLE `bak_sync_object_mapping` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_sync_object_mapping` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_tweet_stats`
--
DROP TABLE IF EXISTS `bak_tweet_stats`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_tweet_stats` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`tweet_id` int(10) unsigned DEFAULT NULL,
`lead_id` bigint(20) unsigned DEFAULT NULL,
`twitter_tweet_id` varchar(191) DEFAULT NULL,
`handle` varchar(191) NOT NULL,
`date_sent` datetime DEFAULT NULL,
`is_failed` tinyint(1) DEFAULT NULL,
`retry_count` int(11) DEFAULT NULL,
`source` varchar(191) DEFAULT NULL,
`source_id` int(11) DEFAULT NULL,
`favorite_count` int(11) DEFAULT NULL,
`retweet_count` int(11) DEFAULT NULL,
`response_details` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '(DC2Type:json)' CHECK (json_valid(`response_details`)),
PRIMARY KEY (`id`),
KEY `bak_favorite_count_index` (`favorite_count`),
KEY `bak_stat_tweet_failed_search` (`is_failed`),
KEY `bak_IDX_CB8CBAE51041E39B` (`tweet_id`),
KEY `bak_retweet_count_index` (`retweet_count`),
KEY `bak_stat_tweet_source_search` (`source`,`source_id`),
KEY `bak_stat_tweet_search2` (`lead_id`,`tweet_id`),
KEY `bak_IDX_CB8CBAE555458D` (`lead_id`),
KEY `bak_tweet_date_sent` (`date_sent`),
KEY `bak_stat_tweet_search` (`tweet_id`,`lead_id`),
KEY `bak_twitter_tweet_id_index` (`twitter_tweet_id`),
CONSTRAINT `bak_FK_CB8CBAE51041E39B` FOREIGN KEY (`tweet_id`) REFERENCES `bak_tweets` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_CB8CBAE555458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_tweet_stats`
--
LOCK TABLES `bak_tweet_stats` WRITE;
/*!40000 ALTER TABLE `bak_tweet_stats` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_tweet_stats` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_tweets`
--
DROP TABLE IF EXISTS `bak_tweets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_tweets` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`page_id` int(10) unsigned DEFAULT NULL,
`asset_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`media_id` varchar(191) DEFAULT NULL,
`media_path` varchar(191) DEFAULT NULL,
`text` varchar(191) NOT NULL,
`sent_count` int(11) DEFAULT NULL,
`favorite_count` int(11) DEFAULT NULL,
`retweet_count` int(11) DEFAULT NULL,
`lang` varchar(191) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `bak_sent_count_index` (`sent_count`),
KEY `bak_IDX_AA38402512469DE2` (`category_id`),
KEY `bak_favorite_count_index` (`favorite_count`),
KEY `bak_IDX_AA384025C4663E4` (`page_id`),
KEY `bak_retweet_count_index` (`retweet_count`),
KEY `bak_IDX_AA3840255DA1941` (`asset_id`),
CONSTRAINT `bak_FK_AA38402512469DE2` FOREIGN KEY (`category_id`) REFERENCES `bak_categories` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_AA3840255DA1941` FOREIGN KEY (`asset_id`) REFERENCES `bak_assets` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_AA384025C4663E4` FOREIGN KEY (`page_id`) REFERENCES `bak_pages` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_tweets`
--
LOCK TABLES `bak_tweets` WRITE;
/*!40000 ALTER TABLE `bak_tweets` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_tweets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_user_tokens`
--
DROP TABLE IF EXISTS `bak_user_tokens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_user_tokens` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned NOT NULL,
`authorizator` varchar(32) NOT NULL,
`secret` varchar(120) NOT NULL,
`expiration` datetime DEFAULT NULL,
`one_time_only` tinyint(1) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `bak_UNIQ_CF080AB35CA2E8E5` (`secret`),
KEY `bak_IDX_CF080AB3A76ED395` (`user_id`),
CONSTRAINT `bak_FK_CF080AB3A76ED395` FOREIGN KEY (`user_id`) REFERENCES `bak_users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_user_tokens`
--
LOCK TABLES `bak_user_tokens` WRITE;
/*!40000 ALTER TABLE `bak_user_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_user_tokens` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_users`
--
DROP TABLE IF EXISTS `bak_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_users` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`role_id` int(10) unsigned NOT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`username` varchar(191) NOT NULL,
`password` varchar(64) NOT NULL,
`first_name` varchar(191) NOT NULL,
`last_name` varchar(191) NOT NULL,
`email` varchar(191) NOT NULL,
`position` varchar(191) DEFAULT NULL,
`timezone` varchar(191) DEFAULT NULL,
`locale` varchar(191) DEFAULT NULL,
`last_login` datetime DEFAULT NULL,
`last_active` datetime DEFAULT NULL,
`preferences` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`signature` longtext DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `bak_UNIQ_1483A5E9F85E0677` (`username`),
UNIQUE KEY `bak_UNIQ_1483A5E9E7927C74` (`email`),
KEY `bak_IDX_1483A5E9D60322AC` (`role_id`),
CONSTRAINT `bak_FK_1483A5E9D60322AC` FOREIGN KEY (`role_id`) REFERENCES `bak_roles` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_users`
--
LOCK TABLES `bak_users` WRITE;
/*!40000 ALTER TABLE `bak_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_video_hits`
--
DROP TABLE IF EXISTS `bak_video_hits`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_video_hits` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`lead_id` bigint(20) unsigned DEFAULT NULL,
`ip_id` int(10) unsigned DEFAULT NULL,
`date_hit` datetime NOT NULL,
`date_left` datetime DEFAULT NULL,
`country` varchar(191) DEFAULT NULL,
`region` varchar(191) DEFAULT NULL,
`city` varchar(191) DEFAULT NULL,
`isp` varchar(191) DEFAULT NULL,
`organization` varchar(191) DEFAULT NULL,
`code` int(11) NOT NULL,
`referer` longtext DEFAULT NULL,
`url` longtext DEFAULT NULL,
`user_agent` longtext DEFAULT NULL,
`remote_host` varchar(191) DEFAULT NULL,
`guid` varchar(191) NOT NULL,
`page_language` varchar(191) DEFAULT NULL,
`browser_languages` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`channel` varchar(191) DEFAULT NULL,
`channel_id` int(11) DEFAULT NULL,
`time_watched` int(11) DEFAULT NULL,
`duration` int(11) DEFAULT NULL,
`query` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
PRIMARY KEY (`id`),
KEY `bak_IDX_1D1831F7A03F5E9F` (`ip_id`),
KEY `bak_video_guid_lead_search` (`guid`,`lead_id`),
KEY `bak_video_date_hit` (`date_hit`),
KEY `bak_video_channel_search` (`channel`,`channel_id`),
KEY `bak_IDX_1D1831F755458D` (`lead_id`),
CONSTRAINT `bak_FK_1D1831F755458D` FOREIGN KEY (`lead_id`) REFERENCES `bak_leads` (`id`) ON DELETE SET NULL,
CONSTRAINT `bak_FK_1D1831F7A03F5E9F` FOREIGN KEY (`ip_id`) REFERENCES `bak_ip_addresses` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_video_hits`
--
LOCK TABLES `bak_video_hits` WRITE;
/*!40000 ALTER TABLE `bak_video_hits` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_video_hits` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_webhook_events`
--
DROP TABLE IF EXISTS `bak_webhook_events`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_webhook_events` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`webhook_id` int(10) unsigned NOT NULL,
`event_type` varchar(50) NOT NULL,
PRIMARY KEY (`id`),
KEY `bak_IDX_7AD44E375C9BA60B` (`webhook_id`),
CONSTRAINT `bak_FK_7AD44E375C9BA60B` FOREIGN KEY (`webhook_id`) REFERENCES `bak_webhooks` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_webhook_events`
--
LOCK TABLES `bak_webhook_events` WRITE;
/*!40000 ALTER TABLE `bak_webhook_events` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_webhook_events` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_webhook_logs`
--
DROP TABLE IF EXISTS `bak_webhook_logs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_webhook_logs` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`webhook_id` int(10) unsigned NOT NULL,
`status_code` varchar(50) NOT NULL,
`date_added` datetime DEFAULT NULL,
`note` varchar(191) DEFAULT NULL,
`runtime` double DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `bak_webhook_id_date_added` (`webhook_id`,`date_added`),
KEY `bak_IDX_45A353475C9BA60B` (`webhook_id`),
CONSTRAINT `bak_FK_45A353475C9BA60B` FOREIGN KEY (`webhook_id`) REFERENCES `bak_webhooks` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_webhook_logs`
--
LOCK TABLES `bak_webhook_logs` WRITE;
/*!40000 ALTER TABLE `bak_webhook_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_webhook_logs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_webhook_queue`
--
DROP TABLE IF EXISTS `bak_webhook_queue`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_webhook_queue` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`webhook_id` int(10) unsigned NOT NULL,
`event_id` int(10) unsigned NOT NULL,
`date_added` datetime DEFAULT NULL,
`date_modified` datetime DEFAULT NULL COMMENT '(DC2Type:datetime_immutable)',
`payload_compressed` mediumblob DEFAULT NULL,
`retries` smallint(5) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `bak_IDX_F52D9A1A5C9BA60B` (`webhook_id`),
KEY `bak_IDX_F52D9A1A71F7E88B` (`event_id`),
CONSTRAINT `bak_FK_F52D9A1A5C9BA60B` FOREIGN KEY (`webhook_id`) REFERENCES `bak_webhooks` (`id`) ON DELETE CASCADE,
CONSTRAINT `bak_FK_F52D9A1A71F7E88B` FOREIGN KEY (`event_id`) REFERENCES `bak_webhook_events` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_webhook_queue`
--
LOCK TABLES `bak_webhook_queue` WRITE;
/*!40000 ALTER TABLE `bak_webhook_queue` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_webhook_queue` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_webhooks`
--
DROP TABLE IF EXISTS `bak_webhooks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_webhooks` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`webhook_url` longtext NOT NULL,
`secret` varchar(191) NOT NULL,
`events_orderby_dir` varchar(191) DEFAULT NULL,
`marked_unhealthy_at` datetime DEFAULT NULL COMMENT '(DC2Type:datetime_immutable)',
`unhealthy_since` datetime DEFAULT NULL COMMENT '(DC2Type:datetime_immutable)',
`last_notification_sent_at` datetime DEFAULT NULL COMMENT '(DC2Type:datetime_immutable)',
PRIMARY KEY (`id`),
KEY `bak_IDX_998C4FDD12469DE2` (`category_id`),
CONSTRAINT `bak_FK_998C4FDD12469DE2` FOREIGN KEY (`category_id`) REFERENCES `bak_categories` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_webhooks`
--
LOCK TABLES `bak_webhooks` WRITE;
/*!40000 ALTER TABLE `bak_webhooks` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_webhooks` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bak_widgets`
--
DROP TABLE IF EXISTS `bak_widgets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bak_widgets` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`type` varchar(191) NOT NULL,
`width` int(11) NOT NULL,
`height` int(11) NOT NULL,
`cache_timeout` int(11) DEFAULT NULL,
`ordering` int(11) DEFAULT NULL,
`params` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bak_widgets`
--
LOCK TABLES `bak_widgets` WRITE;
/*!40000 ALTER TABLE `bak_widgets` DISABLE KEYS */;
/*!40000 ALTER TABLE `bak_widgets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bundle_grapesjsbuilder`
--
DROP TABLE IF EXISTS `bundle_grapesjsbuilder`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bundle_grapesjsbuilder` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`email_id` int(10) unsigned DEFAULT NULL,
`custom_mjml` longtext DEFAULT NULL,
`draft_custom_mjml` longtext DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `IDX_56A1EB07A832C1C9` (`email_id`),
CONSTRAINT `FK_56A1EB07A832C1C9` FOREIGN KEY (`email_id`) REFERENCES `emails` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bundle_grapesjsbuilder`
--
LOCK TABLES `bundle_grapesjsbuilder` WRITE;
/*!40000 ALTER TABLE `bundle_grapesjsbuilder` DISABLE KEYS */;
INSERT INTO `bundle_grapesjsbuilder` VALUES
(1,1,' p, li {margin:0 !important; padding:0; line-height:1.4em;}\r\n
{webview_text}
Your main headline goes here\r\n
Customize these sections with your brand voice, specific products or services, and relevant images. The key is to make each section informative, engaging, and aligned with your email marketing goals.\r\n
Column title\r\n
Share a story about your company, team, or production process. \r\n
You can also encourage readers to subscribe to your newsletter. Briefly explain what kind of content they can expect and how often.\r\n
Inverse column title\r\n
Keep it brief but engaging.\r\n
\r\n \r\n \r\n
{brand=name}\r\n 11111 Beautiful City, 1212 Nice Street\r\n Brazil\r\n
Fancy seeing you down here. You’re getting this email because you gave us your email address.\r\n
Want to change how you receive these emails?\r\n
{unsubscribe_text}
',NULL);
/*!40000 ALTER TABLE `bundle_grapesjsbuilder` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cache_items`
--
DROP TABLE IF EXISTS `cache_items`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `cache_items` (
`item_id` varbinary(255) NOT NULL,
`item_data` longblob NOT NULL,
`item_lifetime` int(10) unsigned DEFAULT NULL,
`item_time` int(10) unsigned NOT NULL,
PRIMARY KEY (`item_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cache_items`
--
LOCK TABLES `cache_items` WRITE;
/*!40000 ALTER TABLE `cache_items` DISABLE KEYS */;
INSERT INTO `cache_items` VALUES
('email|1|pending','i:0;',NULL,1770044414),
('email|1|queued','i:0;',NULL,1770044414);
/*!40000 ALTER TABLE `cache_items` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `campaign_events`
--
DROP TABLE IF EXISTS `campaign_events`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `campaign_events` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`campaign_id` int(10) unsigned NOT NULL,
`parent_id` int(10) unsigned DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`type` varchar(50) NOT NULL,
`event_type` varchar(50) NOT NULL,
`event_order` int(11) NOT NULL,
`properties` longtext NOT NULL COMMENT '(DC2Type:array)',
`deleted` datetime DEFAULT NULL,
`trigger_date` datetime DEFAULT NULL,
`trigger_interval` int(11) DEFAULT NULL,
`trigger_interval_unit` varchar(1) DEFAULT NULL,
`trigger_hour` time DEFAULT NULL,
`trigger_restricted_start_hour` time DEFAULT NULL,
`trigger_restricted_stop_hour` time DEFAULT NULL,
`trigger_restricted_dow` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`trigger_window` int(11) DEFAULT NULL,
`trigger_mode` varchar(10) DEFAULT NULL,
`decision_path` varchar(191) DEFAULT NULL,
`temp_id` varchar(191) DEFAULT NULL,
`channel` varchar(191) DEFAULT NULL,
`channel_id` varchar(64) DEFAULT NULL,
`failed_count` int(11) NOT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `IDX_8EC42EE7F639F774` (`campaign_id`),
KEY `IDX_8EC42EE7727ACA70` (`parent_id`),
KEY `campaign_event_search` (`type`,`event_type`),
KEY `campaign_event_type` (`event_type`),
KEY `campaign_event_channel` (`channel`,`channel_id`),
CONSTRAINT `FK_8EC42EE7727ACA70` FOREIGN KEY (`parent_id`) REFERENCES `campaign_events` (`id`),
CONSTRAINT `FK_8EC42EE7F639F774` FOREIGN KEY (`campaign_id`) REFERENCES `campaigns` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `campaign_events`
--
LOCK TABLES `campaign_events` WRITE;
/*!40000 ALTER TABLE `campaign_events` DISABLE KEYS */;
/*!40000 ALTER TABLE `campaign_events` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `campaign_form_xref`
--
DROP TABLE IF EXISTS `campaign_form_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `campaign_form_xref` (
`campaign_id` int(10) unsigned NOT NULL,
`form_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`campaign_id`,`form_id`),
KEY `IDX_3048A8B25FF69B7D` (`form_id`),
CONSTRAINT `FK_3048A8B25FF69B7D` FOREIGN KEY (`form_id`) REFERENCES `forms` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_3048A8B2F639F774` FOREIGN KEY (`campaign_id`) REFERENCES `campaigns` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `campaign_form_xref`
--
LOCK TABLES `campaign_form_xref` WRITE;
/*!40000 ALTER TABLE `campaign_form_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `campaign_form_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `campaign_lead_event_failed_log`
--
DROP TABLE IF EXISTS `campaign_lead_event_failed_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `campaign_lead_event_failed_log` (
`log_id` bigint(20) unsigned NOT NULL,
`date_added` datetime NOT NULL,
`reason` longtext DEFAULT NULL,
PRIMARY KEY (`log_id`),
KEY `campaign_event_failed_date` (`date_added`),
CONSTRAINT `FK_E50614D2EA675D86` FOREIGN KEY (`log_id`) REFERENCES `campaign_lead_event_log` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `campaign_lead_event_failed_log`
--
LOCK TABLES `campaign_lead_event_failed_log` WRITE;
/*!40000 ALTER TABLE `campaign_lead_event_failed_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `campaign_lead_event_failed_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `campaign_lead_event_log`
--
DROP TABLE IF EXISTS `campaign_lead_event_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `campaign_lead_event_log` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`event_id` int(10) unsigned NOT NULL,
`lead_id` bigint(20) unsigned NOT NULL,
`campaign_id` int(10) unsigned DEFAULT NULL,
`ip_id` int(10) unsigned DEFAULT NULL,
`rotation` int(11) NOT NULL,
`date_triggered` datetime DEFAULT NULL,
`is_scheduled` tinyint(1) NOT NULL,
`trigger_date` datetime DEFAULT NULL,
`system_triggered` tinyint(1) NOT NULL,
`metadata` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`channel` varchar(191) DEFAULT NULL,
`channel_id` int(11) DEFAULT NULL,
`non_action_path_taken` tinyint(1) DEFAULT NULL,
`date_queued` datetime DEFAULT NULL,
`version` int(10) unsigned NOT NULL DEFAULT 1,
PRIMARY KEY (`id`),
UNIQUE KEY `campaign_rotation` (`event_id`,`lead_id`,`rotation`),
KEY `IDX_B7420BA171F7E88B` (`event_id`),
KEY `IDX_B7420BA155458D` (`lead_id`),
KEY `IDX_B7420BA1F639F774` (`campaign_id`),
KEY `IDX_B7420BA1A03F5E9F` (`ip_id`),
KEY `campaign_event_upcoming_search` (`is_scheduled`,`lead_id`),
KEY `campaign_event_schedule_counts` (`campaign_id`,`is_scheduled`,`trigger_date`),
KEY `campaign_date_triggered` (`date_triggered`),
KEY `campaign_leads` (`lead_id`,`campaign_id`,`rotation`),
KEY `campaign_log_channel` (`channel`,`channel_id`,`lead_id`),
KEY `campaign_actions` (`campaign_id`,`event_id`,`date_triggered`),
KEY `campaign_stats` (`campaign_id`,`date_triggered`,`event_id`,`non_action_path_taken`),
KEY `campaign_trigger_date_order` (`trigger_date`),
KEY `idx_scheduled_events` (`is_scheduled`,`event_id`,`trigger_date`),
CONSTRAINT `FK_B7420BA155458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_B7420BA171F7E88B` FOREIGN KEY (`event_id`) REFERENCES `campaign_events` (`id`),
CONSTRAINT `FK_B7420BA1A03F5E9F` FOREIGN KEY (`ip_id`) REFERENCES `ip_addresses` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_B7420BA1F639F774` FOREIGN KEY (`campaign_id`) REFERENCES `campaigns` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `campaign_lead_event_log`
--
LOCK TABLES `campaign_lead_event_log` WRITE;
/*!40000 ALTER TABLE `campaign_lead_event_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `campaign_lead_event_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `campaign_leadlist_xref`
--
DROP TABLE IF EXISTS `campaign_leadlist_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `campaign_leadlist_xref` (
`campaign_id` int(10) unsigned NOT NULL,
`leadlist_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`campaign_id`,`leadlist_id`),
KEY `IDX_6480052EB9FC8874` (`leadlist_id`),
CONSTRAINT `FK_6480052EB9FC8874` FOREIGN KEY (`leadlist_id`) REFERENCES `lead_lists` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_6480052EF639F774` FOREIGN KEY (`campaign_id`) REFERENCES `campaigns` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `campaign_leadlist_xref`
--
LOCK TABLES `campaign_leadlist_xref` WRITE;
/*!40000 ALTER TABLE `campaign_leadlist_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `campaign_leadlist_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `campaign_leads`
--
DROP TABLE IF EXISTS `campaign_leads`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `campaign_leads` (
`campaign_id` int(10) unsigned NOT NULL,
`lead_id` bigint(20) unsigned NOT NULL,
`date_added` datetime NOT NULL,
`manually_removed` tinyint(1) NOT NULL,
`manually_added` tinyint(1) NOT NULL,
`date_last_exited` datetime DEFAULT NULL,
`rotation` int(11) NOT NULL,
PRIMARY KEY (`campaign_id`,`lead_id`),
KEY `IDX_5995213D55458D` (`lead_id`),
KEY `campaign_leads_date_added` (`date_added`),
KEY `campaign_leads_date_exited` (`date_last_exited`),
KEY `campaign_leads` (`campaign_id`,`manually_removed`,`lead_id`,`rotation`),
CONSTRAINT `FK_5995213D55458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_5995213DF639F774` FOREIGN KEY (`campaign_id`) REFERENCES `campaigns` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `campaign_leads`
--
LOCK TABLES `campaign_leads` WRITE;
/*!40000 ALTER TABLE `campaign_leads` DISABLE KEYS */;
/*!40000 ALTER TABLE `campaign_leads` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `campaign_projects_xref`
--
DROP TABLE IF EXISTS `campaign_projects_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `campaign_projects_xref` (
`campaign_id` int(10) unsigned NOT NULL,
`project_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`campaign_id`,`project_id`),
KEY `IDX_9BC3A16C166D1F9C` (`project_id`),
CONSTRAINT `FK_9BC3A16C166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_9BC3A16CF639F774` FOREIGN KEY (`campaign_id`) REFERENCES `campaigns` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `campaign_projects_xref`
--
LOCK TABLES `campaign_projects_xref` WRITE;
/*!40000 ALTER TABLE `campaign_projects_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `campaign_projects_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `campaign_summary`
--
DROP TABLE IF EXISTS `campaign_summary`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `campaign_summary` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`campaign_id` int(10) unsigned DEFAULT NULL,
`event_id` int(10) unsigned NOT NULL,
`date_triggered` datetime DEFAULT NULL COMMENT '(DC2Type:datetime_immutable)',
`scheduled_count` int(11) NOT NULL,
`triggered_count` int(11) NOT NULL,
`non_action_path_taken_count` int(11) NOT NULL,
`failed_count` int(11) NOT NULL,
`log_counts_processed` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `campaign_event_date_triggered` (`campaign_id`,`event_id`,`date_triggered`),
KEY `IDX_6692FA4FF639F774` (`campaign_id`),
KEY `IDX_6692FA4F71F7E88B` (`event_id`),
CONSTRAINT `FK_6692FA4F71F7E88B` FOREIGN KEY (`event_id`) REFERENCES `campaign_events` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_6692FA4FF639F774` FOREIGN KEY (`campaign_id`) REFERENCES `campaigns` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `campaign_summary`
--
LOCK TABLES `campaign_summary` WRITE;
/*!40000 ALTER TABLE `campaign_summary` DISABLE KEYS */;
/*!40000 ALTER TABLE `campaign_summary` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `campaigns`
--
DROP TABLE IF EXISTS `campaigns`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `campaigns` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`canvas_settings` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`allow_restart` tinyint(1) NOT NULL,
`deleted` datetime DEFAULT NULL,
`version` int(10) unsigned NOT NULL DEFAULT 1,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `IDX_E373747012469DE2` (`category_id`),
CONSTRAINT `FK_E373747012469DE2` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `campaigns`
--
LOCK TABLES `campaigns` WRITE;
/*!40000 ALTER TABLE `campaigns` DISABLE KEYS */;
/*!40000 ALTER TABLE `campaigns` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `categories`
--
DROP TABLE IF EXISTS `categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `categories` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`title` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`alias` varchar(191) NOT NULL,
`color` varchar(7) DEFAULT NULL,
`bundle` varchar(50) NOT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `category_alias_search` (`alias`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `categories`
--
LOCK TABLES `categories` WRITE;
/*!40000 ALTER TABLE `categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `channel_url_trackables`
--
DROP TABLE IF EXISTS `channel_url_trackables`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `channel_url_trackables` (
`channel_id` int(11) NOT NULL,
`redirect_id` bigint(20) unsigned NOT NULL,
`channel` varchar(191) NOT NULL,
`hits` int(11) NOT NULL,
`unique_hits` int(11) NOT NULL,
PRIMARY KEY (`redirect_id`,`channel_id`),
KEY `channel_url_trackable_search` (`channel`,`channel_id`),
CONSTRAINT `FK_2F81A41DB42D874D` FOREIGN KEY (`redirect_id`) REFERENCES `page_redirects` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `channel_url_trackables`
--
LOCK TABLES `channel_url_trackables` WRITE;
/*!40000 ALTER TABLE `channel_url_trackables` DISABLE KEYS */;
/*!40000 ALTER TABLE `channel_url_trackables` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `companies`
--
DROP TABLE IF EXISTS `companies`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `companies` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`owner_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`social_cache` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`score` int(11) DEFAULT NULL,
`companyemail` varchar(191) DEFAULT NULL,
`companyaddress1` varchar(191) DEFAULT NULL,
`companyaddress2` varchar(191) DEFAULT NULL,
`companyphone` varchar(191) DEFAULT NULL,
`companycity` varchar(191) DEFAULT NULL,
`companystate` varchar(191) DEFAULT NULL,
`companyzipcode` varchar(191) DEFAULT NULL,
`companycountry` varchar(191) DEFAULT NULL,
`companyname` varchar(191) DEFAULT NULL,
`companywebsite` varchar(191) DEFAULT NULL,
`companyindustry` varchar(191) DEFAULT NULL,
`companydescription` longtext DEFAULT NULL,
`companynumber_of_employees` double DEFAULT NULL,
`companyfax` varchar(191) DEFAULT NULL,
`companyannual_revenue` double DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `IDX_8244AA3A7E3C61F9` (`owner_id`),
KEY `companynumber_of_employees_search` (`companynumber_of_employees`),
KEY `companyfax_search` (`companyfax`),
KEY `companyannual_revenue_search` (`companyannual_revenue`),
KEY `company_filter` (`companyname`,`companyemail`),
KEY `company_match` (`companyname`,`companycity`,`companycountry`,`companystate`),
CONSTRAINT `FK_8244AA3A7E3C61F9` FOREIGN KEY (`owner_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `companies`
--
LOCK TABLES `companies` WRITE;
/*!40000 ALTER TABLE `companies` DISABLE KEYS */;
/*!40000 ALTER TABLE `companies` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `companies_leads`
--
DROP TABLE IF EXISTS `companies_leads`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `companies_leads` (
`company_id` int(11) NOT NULL,
`lead_id` bigint(20) unsigned NOT NULL,
`date_added` datetime NOT NULL,
`is_primary` tinyint(1) DEFAULT NULL,
PRIMARY KEY (`company_id`,`lead_id`),
KEY `IDX_F4190AB655458D` (`lead_id`),
CONSTRAINT `FK_F4190AB655458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_F4190AB6979B1AD6` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `companies_leads`
--
LOCK TABLES `companies_leads` WRITE;
/*!40000 ALTER TABLE `companies_leads` DISABLE KEYS */;
/*!40000 ALTER TABLE `companies_leads` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `company_projects_xref`
--
DROP TABLE IF EXISTS `company_projects_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `company_projects_xref` (
`company_id` int(11) NOT NULL,
`project_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`company_id`,`project_id`),
KEY `IDX_26DD2E6B166D1F9C` (`project_id`),
CONSTRAINT `FK_26DD2E6B166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_26DD2E6B979B1AD6` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `company_projects_xref`
--
LOCK TABLES `company_projects_xref` WRITE;
/*!40000 ALTER TABLE `company_projects_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `company_projects_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `contact_export_scheduler`
--
DROP TABLE IF EXISTS `contact_export_scheduler`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `contact_export_scheduler` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned DEFAULT NULL,
`scheduled_datetime` datetime NOT NULL COMMENT '(DC2Type:datetime_immutable)',
`data` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
PRIMARY KEY (`id`),
KEY `IDX_AC0A03CA76ED395` (`user_id`),
CONSTRAINT `FK_AC0A03CA76ED395` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `contact_export_scheduler`
--
LOCK TABLES `contact_export_scheduler` WRITE;
/*!40000 ALTER TABLE `contact_export_scheduler` DISABLE KEYS */;
/*!40000 ALTER TABLE `contact_export_scheduler` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `contact_merge_records`
--
DROP TABLE IF EXISTS `contact_merge_records`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `contact_merge_records` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`contact_id` bigint(20) unsigned NOT NULL,
`date_added` datetime NOT NULL,
`merged_id` int(11) NOT NULL,
`name` varchar(191) NOT NULL,
PRIMARY KEY (`id`),
KEY `IDX_D9B4F2BFE7A1254A` (`contact_id`),
KEY `contact_merge_date_added` (`date_added`),
KEY `contact_merge_ids` (`merged_id`),
CONSTRAINT `FK_D9B4F2BFE7A1254A` FOREIGN KEY (`contact_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `contact_merge_records`
--
LOCK TABLES `contact_merge_records` WRITE;
/*!40000 ALTER TABLE `contact_merge_records` DISABLE KEYS */;
/*!40000 ALTER TABLE `contact_merge_records` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `dynamic_content`
--
DROP TABLE IF EXISTS `dynamic_content`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `dynamic_content` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`translation_parent_id` int(10) unsigned DEFAULT NULL,
`variant_parent_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`type` varchar(191) NOT NULL DEFAULT 'html',
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`sent_count` int(11) NOT NULL,
`content` longtext DEFAULT NULL,
`utm_tags` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '(DC2Type:json)' CHECK (json_valid(`utm_tags`)),
`lang` varchar(191) NOT NULL,
`variant_settings` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`variant_start_date` datetime DEFAULT NULL,
`filters` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`is_campaign_based` tinyint(1) NOT NULL DEFAULT 1,
`slot_name` varchar(191) DEFAULT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `IDX_20B9DEB212469DE2` (`category_id`),
KEY `IDX_20B9DEB29091A2FB` (`translation_parent_id`),
KEY `IDX_20B9DEB291861123` (`variant_parent_id`),
KEY `is_campaign_based_index` (`is_campaign_based`),
KEY `slot_name_index` (`slot_name`),
CONSTRAINT `FK_20B9DEB212469DE2` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_20B9DEB29091A2FB` FOREIGN KEY (`translation_parent_id`) REFERENCES `dynamic_content` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_20B9DEB291861123` FOREIGN KEY (`variant_parent_id`) REFERENCES `dynamic_content` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `dynamic_content`
--
LOCK TABLES `dynamic_content` WRITE;
/*!40000 ALTER TABLE `dynamic_content` DISABLE KEYS */;
/*!40000 ALTER TABLE `dynamic_content` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `dynamic_content_lead_data`
--
DROP TABLE IF EXISTS `dynamic_content_lead_data`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `dynamic_content_lead_data` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`lead_id` bigint(20) unsigned NOT NULL,
`dynamic_content_id` int(10) unsigned DEFAULT NULL,
`date_added` datetime DEFAULT NULL,
`slot` longtext NOT NULL,
PRIMARY KEY (`id`),
KEY `IDX_515B221B55458D` (`lead_id`),
KEY `IDX_515B221BD9D0CD7` (`dynamic_content_id`),
CONSTRAINT `FK_515B221B55458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_515B221BD9D0CD7` FOREIGN KEY (`dynamic_content_id`) REFERENCES `dynamic_content` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `dynamic_content_lead_data`
--
LOCK TABLES `dynamic_content_lead_data` WRITE;
/*!40000 ALTER TABLE `dynamic_content_lead_data` DISABLE KEYS */;
/*!40000 ALTER TABLE `dynamic_content_lead_data` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `dynamic_content_projects_xref`
--
DROP TABLE IF EXISTS `dynamic_content_projects_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `dynamic_content_projects_xref` (
`dynamic_content_id` int(10) unsigned NOT NULL,
`project_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`dynamic_content_id`,`project_id`),
KEY `IDX_B9D1B7166D1F9C` (`project_id`),
CONSTRAINT `FK_B9D1B7166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_B9D1B7D9D0CD7` FOREIGN KEY (`dynamic_content_id`) REFERENCES `dynamic_content` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `dynamic_content_projects_xref`
--
LOCK TABLES `dynamic_content_projects_xref` WRITE;
/*!40000 ALTER TABLE `dynamic_content_projects_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `dynamic_content_projects_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `dynamic_content_stats`
--
DROP TABLE IF EXISTS `dynamic_content_stats`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `dynamic_content_stats` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`dynamic_content_id` int(10) unsigned DEFAULT NULL,
`lead_id` bigint(20) unsigned DEFAULT NULL,
`date_sent` datetime NOT NULL,
`source` varchar(191) DEFAULT NULL,
`source_id` int(11) DEFAULT NULL,
`tokens` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`sent_count` int(11) DEFAULT NULL,
`last_sent` datetime DEFAULT NULL,
`sent_details` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
PRIMARY KEY (`id`),
KEY `IDX_E48FBF80D9D0CD7` (`dynamic_content_id`),
KEY `IDX_E48FBF8055458D` (`lead_id`),
KEY `stat_dynamic_content_search` (`dynamic_content_id`,`lead_id`),
KEY `stat_dynamic_content_source_search` (`source`,`source_id`),
KEY `stat_dynamic_content_date_sent` (`date_sent`),
CONSTRAINT `FK_E48FBF8055458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_E48FBF80D9D0CD7` FOREIGN KEY (`dynamic_content_id`) REFERENCES `dynamic_content` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `dynamic_content_stats`
--
LOCK TABLES `dynamic_content_stats` WRITE;
/*!40000 ALTER TABLE `dynamic_content_stats` DISABLE KEYS */;
/*!40000 ALTER TABLE `dynamic_content_stats` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `email_assets_xref`
--
DROP TABLE IF EXISTS `email_assets_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_assets_xref` (
`email_id` int(10) unsigned NOT NULL,
`asset_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`email_id`,`asset_id`),
KEY `IDX_CA3157785DA1941` (`asset_id`),
CONSTRAINT `FK_CA3157785DA1941` FOREIGN KEY (`asset_id`) REFERENCES `assets` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_CA315778A832C1C9` FOREIGN KEY (`email_id`) REFERENCES `emails` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `email_assets_xref`
--
LOCK TABLES `email_assets_xref` WRITE;
/*!40000 ALTER TABLE `email_assets_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_assets_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `email_copies`
--
DROP TABLE IF EXISTS `email_copies`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_copies` (
`id` varchar(32) NOT NULL,
`date_created` datetime NOT NULL,
`body` longtext DEFAULT NULL,
`body_text` longtext DEFAULT NULL,
`subject` longtext DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `email_copies`
--
LOCK TABLES `email_copies` WRITE;
/*!40000 ALTER TABLE `email_copies` DISABLE KEYS */;
INSERT INTO `email_copies` VALUES
('34a2fe2317591906e6b4d8693bad8660','2026-02-03 08:58:06','
{webview_text}
Your main headline goes here
Customize these sections with your brand voice, specific products or services, and relevant images. The key is to make each section informative, engaging, and aligned with your email marketing goals.
Column title
Share a story about your company, team, or production process.
You can also encourage readers to subscribe to your newsletter. Briefly explain what kind of content they can expect and how often.
Inverse column title
Keep it brief but engaging.
{brand=name} 11111 Beautiful City, 1212 Nice Street Brazil
Fancy seeing you down here. You’re getting this email because you gave us your email address.
Want to change how you receive these emails?
{unsubscribe_text}
','{webview_text}\n\n \n\nYour main headline goes here\n\nCustomize these sections with your brand voice, specific products or\nservices, and relevant images. The key is to make each section\ninformative, engaging, and aligned with your email marketing goals.\n\n \n\n \n\nColumn title\n\nShare a story about your company, team, or production process. \n\n \n\n \n\n \n\nYou can also encourage readers to subscribe to your newsletter.\nBriefly explain what kind of content they can expect and how often.\n\n \n\n \n\n \n\nInverse column title\n\nKeep it brief but engaging.\n\n \n\n \n\n \n\n{brand=name} \n11111 Beautiful City, 1212 Nice Street \nBrazil \n \n\n \n\nFancy seeing you down here. You’re getting this email because you\ngave us your email address.\n\nWant to change how you receive these emails?\n\n{unsubscribe_text}\n\n ','Exclusive Offer for You!'),
('3bbc5ac961a06de61946622b3d51ced7','2026-02-03 09:12:31','
{webview_text}
email test demo
Customize these sections with your brand voice, specific products or services, and relevant images. The key is to make each section informative, engaging, and aligned with your email marketing goals.
Column title
Share a story about your company, team, or production process.
You can also encourage readers to subscribe to your newsletter. Briefly explain what kind of content they can expect and how often.
Inverse column title
Keep it brief but engaging.
{brand=name} 11111 Beautiful City, 1212 Nice Street Brazil
Fancy seeing you down here. You’re getting this email because you gave us your email address.
Want to change how you receive these emails?
{unsubscribe_text}
','{webview_text}\n\n \n\nemail test demo\n\nCustomize these sections with your brand voice, specific products or\nservices, and relevant images. The key is to make each section\ninformative, engaging, and aligned with your email marketing goals.\n\n \n\n \n\nColumn title\n\nShare a story about your company, team, or production process. \n\n \n\n \n\n \n\nYou can also encourage readers to subscribe to your newsletter.\nBriefly explain what kind of content they can expect and how often.\n\n \n\n \n\n \n\nInverse column title\n\nKeep it brief but engaging.\n\n \n\n \n\n \n\n{brand=name} \n11111 Beautiful City, 1212 Nice Street \nBrazil \n \n\n \n\nFancy seeing you down here. You’re getting this email because you\ngave us your email address.\n\nWant to change how you receive these emails?\n\n{unsubscribe_text}\n\n ','Exclusive Offer for You!');
/*!40000 ALTER TABLE `email_copies` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `email_list_excluded`
--
DROP TABLE IF EXISTS `email_list_excluded`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_list_excluded` (
`email_id` int(10) unsigned NOT NULL,
`leadlist_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`email_id`,`leadlist_id`),
KEY `IDX_3D3C217BB9FC8874` (`leadlist_id`),
CONSTRAINT `FK_3D3C217BA832C1C9` FOREIGN KEY (`email_id`) REFERENCES `emails` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_3D3C217BB9FC8874` FOREIGN KEY (`leadlist_id`) REFERENCES `lead_lists` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `email_list_excluded`
--
LOCK TABLES `email_list_excluded` WRITE;
/*!40000 ALTER TABLE `email_list_excluded` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_list_excluded` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `email_list_xref`
--
DROP TABLE IF EXISTS `email_list_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_list_xref` (
`email_id` int(10) unsigned NOT NULL,
`leadlist_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`email_id`,`leadlist_id`),
KEY `IDX_2E24F01CB9FC8874` (`leadlist_id`),
CONSTRAINT `FK_2E24F01CA832C1C9` FOREIGN KEY (`email_id`) REFERENCES `emails` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_2E24F01CB9FC8874` FOREIGN KEY (`leadlist_id`) REFERENCES `lead_lists` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `email_list_xref`
--
LOCK TABLES `email_list_xref` WRITE;
/*!40000 ALTER TABLE `email_list_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_list_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `email_projects_xref`
--
DROP TABLE IF EXISTS `email_projects_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_projects_xref` (
`email_id` int(10) unsigned NOT NULL,
`project_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`email_id`,`project_id`),
KEY `IDX_A8C81FBE166D1F9C` (`project_id`),
CONSTRAINT `FK_A8C81FBE166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_A8C81FBEA832C1C9` FOREIGN KEY (`email_id`) REFERENCES `emails` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `email_projects_xref`
--
LOCK TABLES `email_projects_xref` WRITE;
/*!40000 ALTER TABLE `email_projects_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_projects_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `email_stat_replies`
--
DROP TABLE IF EXISTS `email_stat_replies`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_stat_replies` (
`id` char(36) NOT NULL COMMENT '(DC2Type:guid)',
`stat_id` bigint(20) unsigned NOT NULL,
`date_replied` datetime NOT NULL,
`message_id` varchar(191) NOT NULL,
PRIMARY KEY (`id`),
KEY `IDX_11E9F6E09502F0B` (`stat_id`),
KEY `email_replies` (`stat_id`,`message_id`),
KEY `date_email_replied` (`date_replied`),
CONSTRAINT `FK_11E9F6E09502F0B` FOREIGN KEY (`stat_id`) REFERENCES `email_stats` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `email_stat_replies`
--
LOCK TABLES `email_stat_replies` WRITE;
/*!40000 ALTER TABLE `email_stat_replies` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_stat_replies` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `email_stats`
--
DROP TABLE IF EXISTS `email_stats`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_stats` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`email_id` int(10) unsigned DEFAULT NULL,
`lead_id` bigint(20) unsigned DEFAULT NULL,
`list_id` int(10) unsigned DEFAULT NULL,
`ip_id` int(10) unsigned DEFAULT NULL,
`copy_id` varchar(32) DEFAULT NULL,
`email_address` varchar(191) NOT NULL,
`date_sent` datetime NOT NULL,
`is_read` tinyint(1) NOT NULL,
`is_failed` tinyint(1) NOT NULL,
`viewed_in_browser` tinyint(1) NOT NULL,
`date_read` datetime DEFAULT NULL,
`tracking_hash` varchar(191) DEFAULT NULL,
`retry_count` int(11) DEFAULT NULL,
`source` varchar(191) DEFAULT NULL,
`source_id` int(11) DEFAULT NULL,
`tokens` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`open_count` int(11) DEFAULT NULL,
`last_opened` datetime DEFAULT NULL,
`open_details` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`generated_sent_date` date GENERATED ALWAYS AS (concat(year(`date_sent`),'-',lpad(month(`date_sent`),2,'0'),'-',lpad(dayofmonth(`date_sent`),2,'0'))) VIRTUAL COMMENT '(DC2Type:generated)',
PRIMARY KEY (`id`),
KEY `IDX_CA0A2625A832C1C9` (`email_id`),
KEY `IDX_CA0A262555458D` (`lead_id`),
KEY `IDX_CA0A26253DAE168B` (`list_id`),
KEY `IDX_CA0A2625A03F5E9F` (`ip_id`),
KEY `IDX_CA0A2625A8752772` (`copy_id`),
KEY `stat_email_search` (`email_id`,`lead_id`),
KEY `stat_email_search2` (`lead_id`,`email_id`),
KEY `stat_email_failed_search` (`is_failed`),
KEY `is_read_date_sent` (`is_read`,`date_sent`),
KEY `stat_email_hash_search` (`tracking_hash`),
KEY `stat_email_source_search` (`source`,`source_id`),
KEY `email_date_sent` (`date_sent`),
KEY `email_date_read_lead` (`date_read`,`lead_id`),
KEY `stat_email_lead_id_date_sent` (`lead_id`,`date_sent`),
KEY `stat_email_email_id_is_read` (`email_id`,`is_read`),
KEY `generated_sent_date_email_id` (`generated_sent_date`,`email_id`),
CONSTRAINT `FK_CA0A26253DAE168B` FOREIGN KEY (`list_id`) REFERENCES `lead_lists` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_CA0A262555458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_CA0A2625A03F5E9F` FOREIGN KEY (`ip_id`) REFERENCES `ip_addresses` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_CA0A2625A832C1C9` FOREIGN KEY (`email_id`) REFERENCES `emails` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_CA0A2625A8752772` FOREIGN KEY (`copy_id`) REFERENCES `email_copies` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `email_stats`
--
LOCK TABLES `email_stats` WRITE;
/*!40000 ALTER TABLE `email_stats` DISABLE KEYS */;
INSERT INTO `email_stats` VALUES
(1,1,9,NULL,NULL,'34a2fe2317591906e6b4d8693bad8660','boukottayaamani@gmail.com','2026-02-03 08:58:06',0,0,0,NULL,'6981b89d43f66037300024',0,NULL,NULL,'a:11:{s:36:\"{dynamiccontent=\"Dynamic Content 1\"}\";s:23:\"Default Dynamic Content\";s:18:\"{unsubscribe_text}\";s:221:\"Unsubscribe to no longer receive emails from us.\";s:17:\"{unsubscribe_url}\";s:158:\"http://173.249.20.244:8081/email/unsubscribe/6981b89d43f66037300024/boukottayaamani@gmail.com/8a2e6bc90bef694931525578b46294a65d5bd75999c56423b64c2220c78405a3\";s:9:\"{dnc_url}\";s:150:\"http://173.249.20.244:8081/email/dnc/6981b89d43f66037300024/boukottayaamani@gmail.com/8a2e6bc90bef694931525578b46294a65d5bd75999c56423b64c2220c78405a3\";s:17:\"{resubscribe_url}\";s:67:\"http://173.249.20.244:8081/email/resubscribe/6981b89d43f66037300024\";s:14:\"{webview_text}\";s:121:\"Having trouble reading this email? Click here.\";s:13:\"{webview_url}\";s:60:\"http://173.249.20.244:8081/email/view/6981b89d43f66037300024\";s:11:\"{signature}\";s:27:\"Best regards, Navitrends UK\";s:9:\"{subject}\";s:24:\"Exclusive Offer for You!\";s:12:\"{brand=name}\";s:25:\"Your Brand (configurable)\";s:16:\"{tracking_pixel}\";s:113:\"http://173.249.20.244:8081/email/6981b89d43f66037300024.gif?ct=YToxOntzOjk6InNlbnRfdGltZSI7aToxNzcwMTA5MDg2O30%3D\";}',0,NULL,'a:0:{}','2026-02-03'),
(2,1,9,NULL,13,'3bbc5ac961a06de61946622b3d51ced7','boukottayaamani@gmail.com','2026-02-03 09:12:31',1,0,0,'2026-02-03 09:13:02','6981bbfe3f8d6135421686',0,NULL,NULL,'a:11:{s:36:\"{dynamiccontent=\"Dynamic Content 1\"}\";s:23:\"Default Dynamic Content\";s:18:\"{unsubscribe_text}\";s:221:\"Unsubscribe to no longer receive emails from us.\";s:17:\"{unsubscribe_url}\";s:158:\"http://173.249.20.244:8081/email/unsubscribe/6981bbfe3f8d6135421686/boukottayaamani@gmail.com/8a2e6bc90bef694931525578b46294a65d5bd75999c56423b64c2220c78405a3\";s:9:\"{dnc_url}\";s:150:\"http://173.249.20.244:8081/email/dnc/6981bbfe3f8d6135421686/boukottayaamani@gmail.com/8a2e6bc90bef694931525578b46294a65d5bd75999c56423b64c2220c78405a3\";s:17:\"{resubscribe_url}\";s:67:\"http://173.249.20.244:8081/email/resubscribe/6981bbfe3f8d6135421686\";s:14:\"{webview_text}\";s:121:\"Having trouble reading this email? Click here.\";s:13:\"{webview_url}\";s:60:\"http://173.249.20.244:8081/email/view/6981bbfe3f8d6135421686\";s:11:\"{signature}\";s:27:\"Best regards, Navitrends UK\";s:9:\"{subject}\";s:24:\"Exclusive Offer for You!\";s:12:\"{brand=name}\";s:25:\"Your Brand (configurable)\";s:16:\"{tracking_pixel}\";s:113:\"http://173.249.20.244:8081/email/6981bbfe3f8d6135421686.gif?ct=YToxOntzOjk6InNlbnRfdGltZSI7aToxNzcwMTA5OTUxO30%3D\";}',1,'2026-02-03 09:13:02','a:1:{i:0;a:3:{s:8:\"datetime\";s:19:\"2026-02-03 09:13:02\";s:9:\"useragent\";s:89:\"Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)\";s:9:\"inBrowser\";b:0;}}','2026-02-03');
/*!40000 ALTER TABLE `email_stats` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `email_stats_devices`
--
DROP TABLE IF EXISTS `email_stats_devices`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_stats_devices` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`device_id` bigint(20) unsigned DEFAULT NULL,
`stat_id` bigint(20) unsigned DEFAULT NULL,
`ip_id` int(10) unsigned DEFAULT NULL,
`date_opened` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `IDX_7A8A1C6F94A4C7D4` (`device_id`),
KEY `IDX_7A8A1C6F9502F0B` (`stat_id`),
KEY `IDX_7A8A1C6FA03F5E9F` (`ip_id`),
KEY `date_opened_search` (`date_opened`),
CONSTRAINT `FK_7A8A1C6F94A4C7D4` FOREIGN KEY (`device_id`) REFERENCES `lead_devices` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_7A8A1C6F9502F0B` FOREIGN KEY (`stat_id`) REFERENCES `email_stats` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_7A8A1C6FA03F5E9F` FOREIGN KEY (`ip_id`) REFERENCES `ip_addresses` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `email_stats_devices`
--
LOCK TABLES `email_stats_devices` WRITE;
/*!40000 ALTER TABLE `email_stats_devices` DISABLE KEYS */;
INSERT INTO `email_stats_devices` VALUES
(1,23,2,13,'2026-02-03 09:13:02');
/*!40000 ALTER TABLE `email_stats_devices` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `emails`
--
DROP TABLE IF EXISTS `emails`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `emails` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`translation_parent_id` int(10) unsigned DEFAULT NULL,
`variant_parent_id` int(10) unsigned DEFAULT NULL,
`unsubscribeform_id` int(10) unsigned DEFAULT NULL,
`preference_center_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`subject` longtext DEFAULT NULL,
`preheader_text` varchar(191) DEFAULT NULL,
`from_address` varchar(191) DEFAULT NULL,
`from_name` varchar(191) DEFAULT NULL,
`reply_to_address` varchar(191) DEFAULT NULL,
`bcc_address` varchar(191) DEFAULT NULL,
`use_owner_as_mailer` tinyint(1) DEFAULT NULL,
`template` varchar(191) DEFAULT NULL,
`content` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`utm_tags` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`plain_text` longtext DEFAULT NULL,
`custom_html` longtext DEFAULT NULL,
`email_type` longtext DEFAULT NULL,
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`continue_sending` tinyint(1) NOT NULL DEFAULT 0,
`read_count` int(11) NOT NULL,
`sent_count` int(11) NOT NULL,
`variant_sent_count` int(11) NOT NULL,
`variant_read_count` int(11) NOT NULL,
`revision` int(11) NOT NULL,
`lang` varchar(191) NOT NULL,
`variant_settings` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`variant_start_date` datetime DEFAULT NULL,
`dynamic_content` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`headers` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT '(DC2Type:json)' CHECK (json_valid(`headers`)),
`public_preview` tinyint(1) DEFAULT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `IDX_4C81E85212469DE2` (`category_id`),
KEY `IDX_4C81E8529091A2FB` (`translation_parent_id`),
KEY `IDX_4C81E85291861123` (`variant_parent_id`),
KEY `IDX_4C81E8522DC494F6` (`unsubscribeform_id`),
KEY `IDX_4C81E852834F9C5B` (`preference_center_id`),
CONSTRAINT `FK_4C81E85212469DE2` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_4C81E8522DC494F6` FOREIGN KEY (`unsubscribeform_id`) REFERENCES `forms` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_4C81E852834F9C5B` FOREIGN KEY (`preference_center_id`) REFERENCES `pages` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_4C81E8529091A2FB` FOREIGN KEY (`translation_parent_id`) REFERENCES `emails` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_4C81E85291861123` FOREIGN KEY (`variant_parent_id`) REFERENCES `emails` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `emails`
--
LOCK TABLES `emails` WRITE;
/*!40000 ALTER TABLE `emails` DISABLE KEYS */;
INSERT INTO `emails` VALUES
(1,NULL,NULL,NULL,NULL,NULL,1,'2026-02-02 14:19:47',1,'admin admin','2026-02-02 14:19:47',1,'admin admin',NULL,NULL,'admin admin','Special Offer Test',NULL,'Exclusive Offer for You!','Click here to see our special pricing!',NULL,NULL,NULL,NULL,0,'Theme1212Column','a:0:{}','a:4:{s:9:\"utmSource\";N;s:9:\"utmMedium\";N;s:11:\"utmCampaign\";N;s:10:\"utmContent\";N;}',NULL,'\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
{webview_text}
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
Your main headline goes here
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
Customize these sections with your brand voice, specific products or services, and relevant images. The key is to make each section informative, engaging, and aligned with your email marketing goals.
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
Column title
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
Share a story about your company, team, or production process.
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
You can also encourage readers to subscribe to your newsletter. Briefly explain what kind of content they can expect and how often.
\r\n
\r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
Inverse column title
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
Keep it brief but engaging.
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
{brand=name} 11111 Beautiful City, 1212 Nice Street Brazil
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
Fancy seeing you down here. You’re getting this email because you gave us your email address.
\r\n
Want to change how you receive these emails?
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
{unsubscribe_text}
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n\r\n\r\n','template',NULL,NULL,0,1,0,0,0,5,'en','a:0:{}',NULL,'a:1:{i:0;a:3:{s:9:\"tokenName\";s:17:\"Dynamic Content 1\";s:7:\"content\";s:23:\"Default Dynamic Content\";s:7:\"filters\";a:1:{i:0;a:2:{s:7:\"content\";N;s:7:\"filters\";a:0:{}}}}}','[]',0,'c0072fbf-f1b9-4924-9487-36e2caf57b3d');
/*!40000 ALTER TABLE `emails` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `emails_draft`
--
DROP TABLE IF EXISTS `emails_draft`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `emails_draft` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`email_id` int(10) unsigned NOT NULL,
`html` longtext DEFAULT NULL,
`template` varchar(191) DEFAULT NULL,
`public_preview` tinyint(1) NOT NULL DEFAULT 1,
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_B9C3FA10A832C1C9` (`email_id`),
CONSTRAINT `FK_B9C3FA10A832C1C9` FOREIGN KEY (`email_id`) REFERENCES `emails` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `emails_draft`
--
LOCK TABLES `emails_draft` WRITE;
/*!40000 ALTER TABLE `emails_draft` DISABLE KEYS */;
/*!40000 ALTER TABLE `emails_draft` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `focus`
--
DROP TABLE IF EXISTS `focus`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `focus` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`focus_type` varchar(191) NOT NULL,
`style` varchar(191) NOT NULL,
`website` varchar(191) DEFAULT NULL,
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`properties` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`utm_tags` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`form_id` int(11) DEFAULT NULL,
`cache` longtext DEFAULT NULL,
`html_mode` varchar(191) DEFAULT NULL,
`editor` longtext DEFAULT NULL,
`html` longtext DEFAULT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `IDX_62C04AE912469DE2` (`category_id`),
KEY `focus_type` (`focus_type`),
KEY `focus_style` (`style`),
KEY `focus_form` (`form_id`),
KEY `focus_name` (`name`),
CONSTRAINT `FK_62C04AE912469DE2` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `focus`
--
LOCK TABLES `focus` WRITE;
/*!40000 ALTER TABLE `focus` DISABLE KEYS */;
/*!40000 ALTER TABLE `focus` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `focus_projects_xref`
--
DROP TABLE IF EXISTS `focus_projects_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `focus_projects_xref` (
`focus_id` int(10) unsigned NOT NULL,
`project_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`focus_id`,`project_id`),
KEY `IDX_8B99D3D7166D1F9C` (`project_id`),
CONSTRAINT `FK_8B99D3D7166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_8B99D3D751804B42` FOREIGN KEY (`focus_id`) REFERENCES `focus` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `focus_projects_xref`
--
LOCK TABLES `focus_projects_xref` WRITE;
/*!40000 ALTER TABLE `focus_projects_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `focus_projects_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `focus_stats`
--
DROP TABLE IF EXISTS `focus_stats`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `focus_stats` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`focus_id` int(10) unsigned NOT NULL,
`lead_id` bigint(20) unsigned DEFAULT NULL,
`type` varchar(191) NOT NULL,
`type_id` int(11) DEFAULT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `IDX_C36970DC51804B42` (`focus_id`),
KEY `IDX_C36970DC55458D` (`lead_id`),
KEY `focus_type` (`type`),
KEY `focus_type_id` (`type`,`type_id`),
KEY `focus_date_added` (`date_added`),
CONSTRAINT `FK_C36970DC51804B42` FOREIGN KEY (`focus_id`) REFERENCES `focus` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_C36970DC55458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `focus_stats`
--
LOCK TABLES `focus_stats` WRITE;
/*!40000 ALTER TABLE `focus_stats` DISABLE KEYS */;
/*!40000 ALTER TABLE `focus_stats` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `form_actions`
--
DROP TABLE IF EXISTS `form_actions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `form_actions` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`form_id` int(10) unsigned NOT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`type` varchar(50) NOT NULL,
`action_order` int(11) NOT NULL,
`properties` longtext NOT NULL COMMENT '(DC2Type:array)',
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `IDX_342491D45FF69B7D` (`form_id`),
KEY `form_action_type_search` (`type`),
CONSTRAINT `FK_342491D45FF69B7D` FOREIGN KEY (`form_id`) REFERENCES `forms` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `form_actions`
--
LOCK TABLES `form_actions` WRITE;
/*!40000 ALTER TABLE `form_actions` DISABLE KEYS */;
/*!40000 ALTER TABLE `form_actions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `form_fields`
--
DROP TABLE IF EXISTS `form_fields`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `form_fields` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`form_id` int(10) unsigned NOT NULL,
`label` longtext NOT NULL,
`show_label` tinyint(1) DEFAULT NULL,
`alias` varchar(191) NOT NULL,
`type` varchar(191) NOT NULL,
`is_custom` tinyint(1) NOT NULL,
`custom_parameters` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`default_value` longtext DEFAULT NULL,
`is_required` tinyint(1) NOT NULL,
`validation_message` longtext DEFAULT NULL,
`help_message` longtext DEFAULT NULL,
`field_order` int(11) DEFAULT NULL,
`properties` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`validation` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '(DC2Type:json)' CHECK (json_valid(`validation`)),
`parent_id` varchar(191) DEFAULT NULL,
`conditions` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '(DC2Type:json)' CHECK (json_valid(`conditions`)),
`label_attr` varchar(191) DEFAULT NULL,
`input_attr` varchar(191) DEFAULT NULL,
`container_attr` varchar(191) DEFAULT NULL,
`lead_field` varchar(191) DEFAULT NULL,
`save_result` tinyint(1) DEFAULT NULL,
`is_auto_fill` tinyint(1) DEFAULT NULL,
`is_read_only` tinyint(1) NOT NULL DEFAULT 0,
`show_when_value_exists` tinyint(1) DEFAULT NULL,
`show_after_x_submissions` int(11) DEFAULT NULL,
`always_display` tinyint(1) DEFAULT NULL,
`mapped_object` varchar(191) DEFAULT NULL,
`mapped_field` varchar(191) DEFAULT NULL,
`field_width` varchar(50) NOT NULL DEFAULT '100%',
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `IDX_7C0B37265FF69B7D` (`form_id`),
KEY `form_field_type_search` (`type`),
CONSTRAINT `FK_7C0B37265FF69B7D` FOREIGN KEY (`form_id`) REFERENCES `forms` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `form_fields`
--
LOCK TABLES `form_fields` WRITE;
/*!40000 ALTER TABLE `form_fields` DISABLE KEYS */;
/*!40000 ALTER TABLE `form_fields` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `form_projects_xref`
--
DROP TABLE IF EXISTS `form_projects_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `form_projects_xref` (
`form_id` int(10) unsigned NOT NULL,
`project_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`form_id`,`project_id`),
KEY `IDX_F9294B29166D1F9C` (`project_id`),
CONSTRAINT `FK_F9294B29166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_F9294B295FF69B7D` FOREIGN KEY (`form_id`) REFERENCES `forms` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `form_projects_xref`
--
LOCK TABLES `form_projects_xref` WRITE;
/*!40000 ALTER TABLE `form_projects_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `form_projects_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `form_submissions`
--
DROP TABLE IF EXISTS `form_submissions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `form_submissions` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`form_id` int(10) unsigned NOT NULL,
`ip_id` int(10) unsigned DEFAULT NULL,
`lead_id` bigint(20) unsigned DEFAULT NULL,
`page_id` int(10) unsigned DEFAULT NULL,
`tracking_id` varchar(191) DEFAULT NULL,
`date_submitted` datetime NOT NULL,
`referer` longtext NOT NULL,
PRIMARY KEY (`id`),
KEY `IDX_C80AF9E65FF69B7D` (`form_id`),
KEY `IDX_C80AF9E6A03F5E9F` (`ip_id`),
KEY `IDX_C80AF9E655458D` (`lead_id`),
KEY `IDX_C80AF9E6C4663E4` (`page_id`),
KEY `form_submission_tracking_search` (`tracking_id`),
KEY `form_date_submitted` (`date_submitted`),
CONSTRAINT `FK_C80AF9E655458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_C80AF9E65FF69B7D` FOREIGN KEY (`form_id`) REFERENCES `forms` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_C80AF9E6A03F5E9F` FOREIGN KEY (`ip_id`) REFERENCES `ip_addresses` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_C80AF9E6C4663E4` FOREIGN KEY (`page_id`) REFERENCES `pages` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `form_submissions`
--
LOCK TABLES `form_submissions` WRITE;
/*!40000 ALTER TABLE `form_submissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `form_submissions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `forms`
--
DROP TABLE IF EXISTS `forms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forms` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`alias` varchar(191) NOT NULL,
`lang` varchar(191) DEFAULT NULL,
`form_attr` varchar(191) DEFAULT NULL,
`cached_html` longtext DEFAULT NULL,
`post_action` varchar(191) NOT NULL,
`post_action_property` longtext DEFAULT NULL,
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`template` varchar(191) DEFAULT NULL,
`in_kiosk_mode` tinyint(1) DEFAULT NULL,
`render_style` tinyint(1) DEFAULT NULL,
`form_type` varchar(191) DEFAULT NULL,
`no_index` tinyint(1) DEFAULT NULL,
`progressive_profiling_limit` int(11) DEFAULT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `IDX_FD3F1BF712469DE2` (`category_id`),
CONSTRAINT `FK_FD3F1BF712469DE2` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `forms`
--
LOCK TABLES `forms` WRITE;
/*!40000 ALTER TABLE `forms` DISABLE KEYS */;
/*!40000 ALTER TABLE `forms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `imports`
--
DROP TABLE IF EXISTS `imports`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `imports` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`dir` varchar(191) NOT NULL,
`file` varchar(191) NOT NULL,
`original_file` varchar(191) DEFAULT NULL,
`line_count` int(11) NOT NULL,
`inserted_count` int(11) NOT NULL,
`updated_count` int(11) NOT NULL,
`ignored_count` int(11) NOT NULL,
`priority` int(11) NOT NULL,
`status` int(11) NOT NULL,
`date_started` datetime DEFAULT NULL,
`date_ended` datetime DEFAULT NULL,
`object` varchar(191) NOT NULL,
`properties` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '(DC2Type:json)' CHECK (json_valid(`properties`)),
PRIMARY KEY (`id`),
KEY `import_object` (`object`),
KEY `import_status` (`status`),
KEY `import_priority` (`priority`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `imports`
--
LOCK TABLES `imports` WRITE;
/*!40000 ALTER TABLE `imports` DISABLE KEYS */;
/*!40000 ALTER TABLE `imports` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `integration_entity`
--
DROP TABLE IF EXISTS `integration_entity`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `integration_entity` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`date_added` datetime NOT NULL,
`integration` varchar(191) DEFAULT NULL,
`integration_entity` varchar(191) DEFAULT NULL,
`integration_entity_id` varchar(191) DEFAULT NULL,
`internal_entity` varchar(191) DEFAULT NULL,
`internal_entity_id` int(11) DEFAULT NULL,
`last_sync_date` datetime DEFAULT NULL,
`internal` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
PRIMARY KEY (`id`),
KEY `integration_external_entity` (`integration`,`integration_entity`,`integration_entity_id`),
KEY `integration_internal_entity` (`integration`,`internal_entity`,`internal_entity_id`),
KEY `integration_entity_match` (`integration`,`internal_entity`,`integration_entity`),
KEY `integration_last_sync_date` (`integration`,`last_sync_date`),
KEY `internal_integration_entity` (`internal_entity_id`,`integration_entity_id`,`internal_entity`,`integration_entity`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `integration_entity`
--
LOCK TABLES `integration_entity` WRITE;
/*!40000 ALTER TABLE `integration_entity` DISABLE KEYS */;
/*!40000 ALTER TABLE `integration_entity` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ip_addresses`
--
DROP TABLE IF EXISTS `ip_addresses`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `ip_addresses` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`ip_address` varchar(45) NOT NULL,
`ip_details` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
PRIMARY KEY (`id`),
KEY `ip_search` (`ip_address`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ip_addresses`
--
LOCK TABLES `ip_addresses` WRITE;
/*!40000 ALTER TABLE `ip_addresses` DISABLE KEYS */;
INSERT INTO `ip_addresses` VALUES
(1,'79.124.40.174','a:10:{s:4:\"city\";s:0:\"\";s:6:\"region\";s:0:\"\";s:7:\"zipcode\";s:0:\"\";s:7:\"country\";s:0:\"\";s:8:\"latitude\";s:0:\"\";s:9:\"longitude\";s:0:\"\";s:3:\"isp\";s:0:\"\";s:12:\"organization\";s:0:\"\";s:8:\"timezone\";s:0:\"\";s:5:\"extra\";s:0:\"\";}'),
(2,'167.94.138.177','a:10:{s:4:\"city\";s:0:\"\";s:6:\"region\";s:0:\"\";s:7:\"zipcode\";s:0:\"\";s:7:\"country\";s:0:\"\";s:8:\"latitude\";s:0:\"\";s:9:\"longitude\";s:0:\"\";s:3:\"isp\";s:0:\"\";s:12:\"organization\";s:0:\"\";s:8:\"timezone\";s:0:\"\";s:5:\"extra\";s:0:\"\";}'),
(3,'204.76.203.93','a:10:{s:4:\"city\";s:0:\"\";s:6:\"region\";s:0:\"\";s:7:\"zipcode\";s:0:\"\";s:7:\"country\";s:0:\"\";s:8:\"latitude\";s:0:\"\";s:9:\"longitude\";s:0:\"\";s:3:\"isp\";s:0:\"\";s:12:\"organization\";s:0:\"\";s:8:\"timezone\";s:0:\"\";s:5:\"extra\";s:0:\"\";}'),
(4,'64.62.197.105','a:10:{s:4:\"city\";s:0:\"\";s:6:\"region\";s:0:\"\";s:7:\"zipcode\";s:0:\"\";s:7:\"country\";s:0:\"\";s:8:\"latitude\";s:0:\"\";s:9:\"longitude\";s:0:\"\";s:3:\"isp\";s:0:\"\";s:12:\"organization\";s:0:\"\";s:8:\"timezone\";s:0:\"\";s:5:\"extra\";s:0:\"\";}'),
(5,'5.61.209.92','a:10:{s:4:\"city\";s:0:\"\";s:6:\"region\";s:0:\"\";s:7:\"zipcode\";s:0:\"\";s:7:\"country\";s:0:\"\";s:8:\"latitude\";s:0:\"\";s:9:\"longitude\";s:0:\"\";s:3:\"isp\";s:0:\"\";s:12:\"organization\";s:0:\"\";s:8:\"timezone\";s:0:\"\";s:5:\"extra\";s:0:\"\";}'),
(6,'193.142.146.230','N;'),
(7,'89.42.231.200','a:10:{s:4:\"city\";s:0:\"\";s:6:\"region\";s:0:\"\";s:7:\"zipcode\";s:0:\"\";s:7:\"country\";s:0:\"\";s:8:\"latitude\";s:0:\"\";s:9:\"longitude\";s:0:\"\";s:3:\"isp\";s:0:\"\";s:12:\"organization\";s:0:\"\";s:8:\"timezone\";s:0:\"\";s:5:\"extra\";s:0:\"\";}'),
(8,'81.168.83.103','a:10:{s:4:\"city\";s:0:\"\";s:6:\"region\";s:0:\"\";s:7:\"zipcode\";s:0:\"\";s:7:\"country\";s:0:\"\";s:8:\"latitude\";s:0:\"\";s:9:\"longitude\";s:0:\"\";s:3:\"isp\";s:0:\"\";s:12:\"organization\";s:0:\"\";s:8:\"timezone\";s:0:\"\";s:5:\"extra\";s:0:\"\";}'),
(9,'167.94.138.182','a:10:{s:4:\"city\";s:0:\"\";s:6:\"region\";s:0:\"\";s:7:\"zipcode\";s:0:\"\";s:7:\"country\";s:0:\"\";s:8:\"latitude\";s:0:\"\";s:9:\"longitude\";s:0:\"\";s:3:\"isp\";s:0:\"\";s:12:\"organization\";s:0:\"\";s:8:\"timezone\";s:0:\"\";s:5:\"extra\";s:0:\"\";}'),
(10,'43.165.61.15','a:10:{s:4:\"city\";s:0:\"\";s:6:\"region\";s:0:\"\";s:7:\"zipcode\";s:0:\"\";s:7:\"country\";s:0:\"\";s:8:\"latitude\";s:0:\"\";s:9:\"longitude\";s:0:\"\";s:3:\"isp\";s:0:\"\";s:12:\"organization\";s:0:\"\";s:8:\"timezone\";s:0:\"\";s:5:\"extra\";s:0:\"\";}'),
(11,'43.165.61.15','a:10:{s:4:\"city\";s:0:\"\";s:6:\"region\";s:0:\"\";s:7:\"zipcode\";s:0:\"\";s:7:\"country\";s:0:\"\";s:8:\"latitude\";s:0:\"\";s:9:\"longitude\";s:0:\"\";s:3:\"isp\";s:0:\"\";s:12:\"organization\";s:0:\"\";s:8:\"timezone\";s:0:\"\";s:5:\"extra\";s:0:\"\";}'),
(12,'65.49.1.218','a:10:{s:4:\"city\";s:0:\"\";s:6:\"region\";s:0:\"\";s:7:\"zipcode\";s:0:\"\";s:7:\"country\";s:0:\"\";s:8:\"latitude\";s:0:\"\";s:9:\"longitude\";s:0:\"\";s:3:\"isp\";s:0:\"\";s:12:\"organization\";s:0:\"\";s:8:\"timezone\";s:0:\"\";s:5:\"extra\";s:0:\"\";}'),
(13,'66.249.93.198','a:10:{s:4:\"city\";s:0:\"\";s:6:\"region\";s:0:\"\";s:7:\"zipcode\";s:0:\"\";s:7:\"country\";s:0:\"\";s:8:\"latitude\";s:0:\"\";s:9:\"longitude\";s:0:\"\";s:3:\"isp\";s:0:\"\";s:12:\"organization\";s:0:\"\";s:8:\"timezone\";s:0:\"\";s:5:\"extra\";s:0:\"\";}'),
(14,'206.168.34.55','a:10:{s:4:\"city\";s:0:\"\";s:6:\"region\";s:0:\"\";s:7:\"zipcode\";s:0:\"\";s:7:\"country\";s:0:\"\";s:8:\"latitude\";s:0:\"\";s:9:\"longitude\";s:0:\"\";s:3:\"isp\";s:0:\"\";s:12:\"organization\";s:0:\"\";s:8:\"timezone\";s:0:\"\";s:5:\"extra\";s:0:\"\";}'),
(15,'134.122.9.112','a:10:{s:4:\"city\";s:0:\"\";s:6:\"region\";s:0:\"\";s:7:\"zipcode\";s:0:\"\";s:7:\"country\";s:0:\"\";s:8:\"latitude\";s:0:\"\";s:9:\"longitude\";s:0:\"\";s:3:\"isp\";s:0:\"\";s:12:\"organization\";s:0:\"\";s:8:\"timezone\";s:0:\"\";s:5:\"extra\";s:0:\"\";}'),
(16,'167.94.138.38','a:10:{s:4:\"city\";s:0:\"\";s:6:\"region\";s:0:\"\";s:7:\"zipcode\";s:0:\"\";s:7:\"country\";s:0:\"\";s:8:\"latitude\";s:0:\"\";s:9:\"longitude\";s:0:\"\";s:3:\"isp\";s:0:\"\";s:12:\"organization\";s:0:\"\";s:8:\"timezone\";s:0:\"\";s:5:\"extra\";s:0:\"\";}');
/*!40000 ALTER TABLE `ip_addresses` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lead_categories`
--
DROP TABLE IF EXISTS `lead_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `lead_categories` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned NOT NULL,
`lead_id` bigint(20) unsigned NOT NULL,
`date_added` datetime NOT NULL,
`manually_removed` tinyint(1) NOT NULL,
`manually_added` tinyint(1) NOT NULL,
PRIMARY KEY (`id`),
KEY `IDX_12685DF412469DE2` (`category_id`),
KEY `IDX_12685DF455458D` (`lead_id`),
CONSTRAINT `FK_12685DF412469DE2` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_12685DF455458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lead_categories`
--
LOCK TABLES `lead_categories` WRITE;
/*!40000 ALTER TABLE `lead_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `lead_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lead_companies_change_log`
--
DROP TABLE IF EXISTS `lead_companies_change_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `lead_companies_change_log` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`lead_id` bigint(20) unsigned NOT NULL,
`type` tinytext NOT NULL,
`event_name` varchar(191) NOT NULL,
`action_name` varchar(191) NOT NULL,
`company_id` int(11) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `IDX_A034C81B55458D` (`lead_id`),
KEY `company_date_added` (`date_added`),
CONSTRAINT `FK_A034C81B55458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lead_companies_change_log`
--
LOCK TABLES `lead_companies_change_log` WRITE;
/*!40000 ALTER TABLE `lead_companies_change_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `lead_companies_change_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lead_devices`
--
DROP TABLE IF EXISTS `lead_devices`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `lead_devices` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`lead_id` bigint(20) unsigned NOT NULL,
`date_added` datetime NOT NULL,
`client_info` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`device` varchar(191) DEFAULT NULL,
`device_os_name` varchar(191) DEFAULT NULL,
`device_os_shortname` varchar(191) DEFAULT NULL,
`device_os_version` varchar(191) DEFAULT NULL,
`device_os_platform` varchar(191) DEFAULT NULL,
`device_brand` varchar(191) DEFAULT NULL,
`device_model` varchar(191) DEFAULT NULL,
`tracking_id` varchar(191) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_48C912F47D05ABBE` (`tracking_id`),
KEY `IDX_48C912F455458D` (`lead_id`),
KEY `date_added_search` (`date_added`),
KEY `device_search` (`device`),
KEY `device_os_name_search` (`device_os_name`),
KEY `device_os_shortname_search` (`device_os_shortname`),
KEY `device_os_version_search` (`device_os_version`),
KEY `device_os_platform_search` (`device_os_platform`),
KEY `device_brand_search` (`device_brand`),
KEY `device_model_search` (`device_model`),
CONSTRAINT `FK_48C912F455458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lead_devices`
--
LOCK TABLES `lead_devices` WRITE;
/*!40000 ALTER TABLE `lead_devices` DISABLE KEYS */;
INSERT INTO `lead_devices` VALUES
(1,1,'2026-02-02 04:18:35','a:7:{s:4:\"type\";s:7:\"browser\";s:4:\"name\";s:6:\"Chrome\";s:10:\"short_name\";s:2:\"CH\";s:7:\"version\";s:4:\"78.0\";s:6:\"engine\";s:5:\"Blink\";s:14:\"engine_version\";s:13:\"78.0.3904.108\";s:6:\"family\";s:6:\"Chrome\";}','desktop','Windows','WIN','10','x64','','','4mgms4kdtanegkuojujv7pc'),
(2,2,'2026-02-02 04:26:36','a:7:{s:4:\"type\";s:7:\"browser\";s:4:\"name\";s:6:\"Chrome\";s:10:\"short_name\";s:2:\"CH\";s:7:\"version\";s:4:\"78.0\";s:6:\"engine\";s:5:\"Blink\";s:14:\"engine_version\";s:13:\"78.0.3904.108\";s:6:\"family\";s:6:\"Chrome\";}','desktop','Windows','WIN','10','x64','','','q5yzo9ujgucbupqo54cgdmp'),
(3,3,'2026-02-02 05:25:49','N;','',NULL,NULL,NULL,NULL,'','','4tivic4o8b5n0wpl6fvpqtu'),
(4,4,'2026-02-02 06:05:19','N;','',NULL,NULL,NULL,NULL,'','','28zhv2rks84zyl58skz6dez'),
(5,5,'2026-02-02 07:02:24','a:7:{s:4:\"type\";s:7:\"browser\";s:4:\"name\";s:9:\"Pale Moon\";s:10:\"short_name\";s:2:\"PM\";s:7:\"version\";s:4:\"33.0\";s:6:\"engine\";s:6:\"Goanna\";s:14:\"engine_version\";s:3:\"6.6\";s:6:\"family\";N;}','desktop','Windows','WIN','7','','','','8ifwltof9oepv7vczyg2kqe'),
(6,6,'2026-02-02 08:45:19','a:7:{s:4:\"type\";s:7:\"browser\";s:4:\"name\";s:14:\"Microsoft Edge\";s:10:\"short_name\";s:2:\"PS\";s:7:\"version\";s:4:\"90.0\";s:6:\"engine\";s:5:\"Blink\";s:14:\"engine_version\";s:12:\"90.0.4430.85\";s:6:\"family\";s:17:\"Internet Explorer\";}','desktop','Windows','WIN','10','x64','','','slzhcoaoozfcd3ndr0bjnv7'),
(7,7,'2026-02-02 10:39:54','a:7:{s:4:\"type\";s:7:\"browser\";s:4:\"name\";s:14:\"Microsoft Edge\";s:10:\"short_name\";s:2:\"PS\";s:7:\"version\";s:4:\"90.0\";s:6:\"engine\";s:5:\"Blink\";s:14:\"engine_version\";s:12:\"90.0.4430.85\";s:6:\"family\";s:17:\"Internet Explorer\";}','desktop','Windows','WIN','10','x64','','','e1d1dccobisd48jq6ca1uec'),
(8,8,'2026-02-02 10:41:24','a:7:{s:4:\"type\";s:7:\"browser\";s:4:\"name\";s:6:\"Chrome\";s:10:\"short_name\";s:2:\"CH\";s:7:\"version\";s:5:\"124.0\";s:6:\"engine\";s:5:\"Blink\";s:14:\"engine_version\";s:9:\"124.0.0.0\";s:6:\"family\";s:6:\"Chrome\";}','desktop','Windows','WIN','10','x64','','','4y1krrgy10d4dwlhs8dyk67'),
(9,10,'2026-02-02 16:11:43','a:7:{s:4:\"type\";s:7:\"browser\";s:4:\"name\";s:6:\"Chrome\";s:10:\"short_name\";s:2:\"CH\";s:7:\"version\";s:5:\"124.0\";s:6:\"engine\";s:5:\"Blink\";s:14:\"engine_version\";s:9:\"124.0.0.0\";s:6:\"family\";s:6:\"Chrome\";}','desktop','Windows','WIN','10','x64','','','b275qk5l8jyzz45reiegl0r'),
(10,11,'2026-02-02 19:09:41','N;','',NULL,NULL,NULL,NULL,'','','oxiz5cd3mvbxtrf0h0vicky'),
(11,12,'2026-02-02 19:12:27','N;','',NULL,NULL,NULL,NULL,'','','73zfutszk73phj701gkrdnn'),
(12,13,'2026-02-02 19:12:27','N;','',NULL,NULL,NULL,NULL,'','','j4g6sbfxu4x918t9tk27im9'),
(13,14,'2026-02-02 19:12:27','N;','',NULL,NULL,NULL,NULL,'','','68phfku7yr5fph7psxi9gjk'),
(14,15,'2026-02-02 19:12:28','N;','',NULL,NULL,NULL,NULL,'','','qgn4opxnr8hjvlinhwzdea0'),
(15,16,'2026-02-02 19:12:28','N;','',NULL,NULL,NULL,NULL,'','','nmniyxr1elfh6rf7r0sqltb'),
(16,17,'2026-02-02 22:07:02','a:7:{s:4:\"type\";s:7:\"browser\";s:4:\"name\";s:6:\"Chrome\";s:10:\"short_name\";s:2:\"CH\";s:7:\"version\";s:4:\"78.0\";s:6:\"engine\";s:5:\"Blink\";s:14:\"engine_version\";s:13:\"78.0.3904.108\";s:6:\"family\";s:6:\"Chrome\";}','desktop','Windows','WIN','10','x64','','','gbl8ot1txhsjv82050yjj3k'),
(17,18,'2026-02-03 02:55:56','a:7:{s:4:\"type\";s:7:\"browser\";s:4:\"name\";s:7:\"Firefox\";s:10:\"short_name\";s:2:\"FF\";s:7:\"version\";s:5:\"115.0\";s:6:\"engine\";s:5:\"Gecko\";s:14:\"engine_version\";s:5:\"109.0\";s:6:\"family\";s:7:\"Firefox\";}','desktop','Windows','WIN','7','x64','','','td003hxrqlo7yrv915do9vl'),
(18,19,'2026-02-03 03:06:20','a:7:{s:4:\"type\";s:7:\"browser\";s:4:\"name\";s:14:\"Microsoft Edge\";s:10:\"short_name\";s:2:\"PS\";s:7:\"version\";s:4:\"90.0\";s:6:\"engine\";s:5:\"Blink\";s:14:\"engine_version\";s:12:\"90.0.4430.85\";s:6:\"family\";s:17:\"Internet Explorer\";}','desktop','Windows','WIN','10','x64','','','yfvtaaqetrrtb2wo1wfn30i'),
(19,20,'2026-02-03 05:00:21','a:7:{s:4:\"type\";s:7:\"browser\";s:4:\"name\";s:6:\"Chrome\";s:10:\"short_name\";s:2:\"CH\";s:7:\"version\";s:5:\"124.0\";s:6:\"engine\";s:5:\"Blink\";s:14:\"engine_version\";s:9:\"124.0.0.0\";s:6:\"family\";s:6:\"Chrome\";}','desktop','Windows','WIN','10','x64','','','u82dp1en03f6lct2k56l45o'),
(20,21,'2026-02-03 05:52:17','a:7:{s:4:\"type\";s:7:\"browser\";s:4:\"name\";s:6:\"Chrome\";s:10:\"short_name\";s:2:\"CH\";s:7:\"version\";s:4:\"78.0\";s:6:\"engine\";s:5:\"Blink\";s:14:\"engine_version\";s:13:\"78.0.3904.108\";s:6:\"family\";s:6:\"Chrome\";}','desktop','Windows','WIN','10','x64','','','e514kz1pe8xyg7887ft7eue'),
(21,22,'2026-02-03 08:00:26','a:7:{s:4:\"type\";s:7:\"browser\";s:4:\"name\";s:6:\"Chrome\";s:10:\"short_name\";s:2:\"CH\";s:7:\"version\";s:5:\"124.0\";s:6:\"engine\";s:5:\"Blink\";s:14:\"engine_version\";s:9:\"124.0.0.0\";s:6:\"family\";s:6:\"Chrome\";}','desktop','Windows','WIN','10','x64','','','g8zfmetehddvsc3gfj6uf0n'),
(22,23,'2026-02-03 08:43:15','a:7:{s:4:\"type\";s:7:\"browser\";s:4:\"name\";s:14:\"Microsoft Edge\";s:10:\"short_name\";s:2:\"PS\";s:7:\"version\";s:4:\"90.0\";s:6:\"engine\";s:5:\"Blink\";s:14:\"engine_version\";s:12:\"90.0.4430.85\";s:6:\"family\";s:17:\"Internet Explorer\";}','desktop','Windows','WIN','10','x64','','','cjznwfxqjnczaka38sezpv5'),
(23,9,'2026-02-03 09:13:02','N;','',NULL,NULL,NULL,NULL,'','','i9sy7ivzn5i654f2clidtp3'),
(24,25,'2026-02-03 10:24:51','N;','',NULL,NULL,NULL,NULL,'','','pjqqwgacc9bl5okw97gyep8'),
(25,26,'2026-02-03 13:34:52','a:7:{s:4:\"type\";s:7:\"browser\";s:4:\"name\";s:14:\"Microsoft Edge\";s:10:\"short_name\";s:2:\"PS\";s:7:\"version\";s:4:\"90.0\";s:6:\"engine\";s:5:\"Blink\";s:14:\"engine_version\";s:12:\"90.0.4430.85\";s:6:\"family\";s:17:\"Internet Explorer\";}','desktop','Windows','WIN','10','x64','','','cf9pd9b3gu1i62zy7uzirao'),
(26,27,'2026-02-03 13:54:01','a:7:{s:4:\"type\";s:7:\"browser\";s:4:\"name\";s:6:\"Chrome\";s:10:\"short_name\";s:2:\"CH\";s:7:\"version\";s:5:\"124.0\";s:6:\"engine\";s:5:\"Blink\";s:14:\"engine_version\";s:9:\"124.0.0.0\";s:6:\"family\";s:6:\"Chrome\";}','desktop','Windows','WIN','10','x64','','','x50y7d2pnqda9k0mng8bjlh'),
(27,28,'2026-02-03 20:16:29','a:7:{s:4:\"type\";s:7:\"browser\";s:4:\"name\";s:14:\"Microsoft Edge\";s:10:\"short_name\";s:2:\"PS\";s:7:\"version\";s:4:\"90.0\";s:6:\"engine\";s:5:\"Blink\";s:14:\"engine_version\";s:12:\"90.0.4430.85\";s:6:\"family\";s:17:\"Internet Explorer\";}','desktop','Windows','WIN','10','x64','','','1aq6rbdp9sajct2ilf9wnrz'),
(28,29,'2026-02-03 23:33:48','a:7:{s:4:\"type\";s:7:\"browser\";s:4:\"name\";s:6:\"Chrome\";s:10:\"short_name\";s:2:\"CH\";s:7:\"version\";s:4:\"78.0\";s:6:\"engine\";s:5:\"Blink\";s:14:\"engine_version\";s:13:\"78.0.3904.108\";s:6:\"family\";s:6:\"Chrome\";}','desktop','Windows','WIN','10','x64','','','vvnudu8ms2cz75nac8okkmt'),
(29,30,'2026-02-04 05:13:19','a:7:{s:4:\"type\";s:7:\"browser\";s:4:\"name\";s:6:\"Chrome\";s:10:\"short_name\";s:2:\"CH\";s:7:\"version\";s:5:\"108.0\";s:6:\"engine\";s:5:\"Blink\";s:14:\"engine_version\";s:9:\"108.0.0.0\";s:6:\"family\";s:6:\"Chrome\";}','desktop','Windows','WIN','10','x64','','','h3dm5yakb7wtms4bave2fgx'),
(30,31,'2026-02-04 07:21:58','a:7:{s:4:\"type\";s:7:\"browser\";s:4:\"name\";s:6:\"Chrome\";s:10:\"short_name\";s:2:\"CH\";s:7:\"version\";s:4:\"78.0\";s:6:\"engine\";s:5:\"Blink\";s:14:\"engine_version\";s:13:\"78.0.3904.108\";s:6:\"family\";s:6:\"Chrome\";}','desktop','Windows','WIN','10','x64','','','pxr27okyv8x7e0ulvt1mx1s'),
(31,32,'2026-02-04 08:16:41','a:7:{s:4:\"type\";s:7:\"browser\";s:4:\"name\";s:14:\"Microsoft Edge\";s:10:\"short_name\";s:2:\"PS\";s:7:\"version\";s:4:\"90.0\";s:6:\"engine\";s:5:\"Blink\";s:14:\"engine_version\";s:12:\"90.0.4430.85\";s:6:\"family\";s:17:\"Internet Explorer\";}','desktop','Windows','WIN','10','x64','','','5bnkuupkk4avcd2hif3zsfs'),
(32,34,'2026-02-04 11:02:22','N;','',NULL,NULL,NULL,NULL,'','','lculyibi8mtaxaau76o99mj');
/*!40000 ALTER TABLE `lead_devices` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lead_donotcontact`
--
DROP TABLE IF EXISTS `lead_donotcontact`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `lead_donotcontact` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`lead_id` bigint(20) unsigned DEFAULT NULL,
`date_added` datetime NOT NULL,
`reason` smallint(6) NOT NULL,
`channel` varchar(191) NOT NULL,
`channel_id` int(11) DEFAULT NULL,
`comments` longtext DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `IDX_71DC0B1D55458D` (`lead_id`),
KEY `leadid_reason_channel` (`lead_id`,`channel`,`reason`),
KEY `dnc_reason_search` (`reason`),
KEY `dnc_date_added` (`date_added`),
CONSTRAINT `FK_71DC0B1D55458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lead_donotcontact`
--
LOCK TABLES `lead_donotcontact` WRITE;
/*!40000 ALTER TABLE `lead_donotcontact` DISABLE KEYS */;
/*!40000 ALTER TABLE `lead_donotcontact` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lead_event_log`
--
DROP TABLE IF EXISTS `lead_event_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `lead_event_log` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`lead_id` bigint(20) unsigned DEFAULT NULL,
`user_id` int(11) DEFAULT NULL,
`user_name` varchar(191) DEFAULT NULL,
`bundle` varchar(191) DEFAULT NULL,
`object` varchar(191) DEFAULT NULL,
`action` varchar(191) DEFAULT NULL,
`object_id` int(11) DEFAULT NULL,
`date_added` datetime NOT NULL,
`properties` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '(DC2Type:json)' CHECK (json_valid(`properties`)),
PRIMARY KEY (`id`),
KEY `lead_id_index` (`lead_id`),
KEY `lead_object_index` (`object`,`object_id`),
KEY `lead_timeline_index` (`bundle`,`object`,`action`,`object_id`),
KEY `IDX_SEARCH` (`bundle`,`object`,`action`,`object_id`,`date_added`),
KEY `lead_timeline_action_index` (`action`),
KEY `lead_date_added_index` (`date_added`),
CONSTRAINT `FK_753AF2E55458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lead_event_log`
--
LOCK TABLES `lead_event_log` WRITE;
/*!40000 ALTER TABLE `lead_event_log` DISABLE KEYS */;
INSERT INTO `lead_event_log` VALUES
(1,1,NULL,NULL,'page','hit','created_contact',1,'2026-02-02 04:18:35','{\"object_description\":\"http:\\/\\/173.249.20.244:8081\\/jars\"}'),
(2,2,NULL,NULL,'page','hit','created_contact',2,'2026-02-02 04:26:37','{\"object_description\":\"http:\\/\\/173.249.20.244:8081\\/service\\/extdirect\"}'),
(3,3,NULL,NULL,'page','hit','created_contact',3,'2026-02-02 05:25:49','{\"object_description\":\"http:\\/\\/173.249.20.244:8081\\/wiki\"}'),
(4,4,NULL,NULL,'page','hit','created_contact',4,'2026-02-02 06:05:19','{\"object_description\":\"http:\\/\\/httpbin.org\\/ip\"}'),
(5,5,NULL,NULL,'page','hit','created_contact',5,'2026-02-02 07:02:24','{\"object_description\":\"http:\\/\\/www.shadowserver.orgwww.shadowserver.org:443\"}'),
(6,6,NULL,NULL,'page','hit','created_contact',6,'2026-02-02 08:45:19','{\"object_description\":\"http:\\/\\/173.249.20.244:8081\\/SDK\\/webLanguage\"}'),
(7,7,NULL,NULL,'page','hit','created_contact',7,'2026-02-02 10:39:54','{\"object_description\":\"http:\\/\\/173.249.20.244:8081\\/SDK\\/webLanguage\"}'),
(8,8,NULL,NULL,'page','hit','created_contact',8,'2026-02-02 10:41:24','{\"object_description\":\"http:\\/\\/173.249.20.244\\/constants.py\"}'),
(9,10,NULL,NULL,'page','hit','created_contact',9,'2026-02-02 16:11:43','{\"object_description\":\"http:\\/\\/173.249.20.244\\/config.js\"}'),
(10,11,NULL,NULL,'page','hit','created_contact',10,'2026-02-02 19:09:41','{\"object_description\":\"http:\\/\\/173.249.20.244:8081\\/.well-known\\/security.txt\"}'),
(11,12,NULL,NULL,'page','hit','created_contact',12,'2026-02-02 19:12:27','{\"object_description\":\"http:\\/\\/vmi3024229.contaboserver.net:8081\\/sdk\"}'),
(12,13,NULL,NULL,'page','hit','created_contact',11,'2026-02-02 19:12:27','{\"object_description\":\"http:\\/\\/vmi3024229.contaboserver.net:8081\\/nmaplowercheck1770059546\"}'),
(13,14,NULL,NULL,'page','hit','created_contact',13,'2026-02-02 19:12:27','{\"object_description\":\"http:\\/\\/vmi3024229.contaboserver.net:8081\\/asofKlj\"}'),
(14,15,NULL,NULL,'page','hit','created_contact',14,'2026-02-02 19:12:28','{\"object_description\":\"http:\\/\\/vmi3024229.contaboserver.net:8081\\/HNAP1\"}'),
(15,16,NULL,NULL,'page','hit','created_contact',15,'2026-02-02 19:12:28','{\"object_description\":\"http:\\/\\/vmi3024229.contaboserver.net:8081\\/evox\\/about\"}'),
(16,17,NULL,NULL,'page','hit','created_contact',16,'2026-02-02 22:07:02','{\"object_description\":\"http:\\/\\/173.249.20.244:8081\\/jars\"}'),
(17,18,NULL,NULL,'page','hit','created_contact',17,'2026-02-03 02:55:56','{\"object_description\":\"http:\\/\\/www.shadowserver.orgwww.shadowserver.org:443\"}'),
(18,19,NULL,NULL,'page','hit','created_contact',18,'2026-02-03 03:06:20','{\"object_description\":\"http:\\/\\/173.249.20.244:8081\\/SDK\\/webLanguage\"}'),
(19,20,NULL,NULL,'page','hit','created_contact',19,'2026-02-03 05:00:21','{\"object_description\":\"http:\\/\\/173.249.20.244\\/.streamlit\\/secrets.toml\"}'),
(20,21,NULL,NULL,'page','hit','created_contact',20,'2026-02-03 05:52:17','{\"object_description\":\"http:\\/\\/173.249.20.244:8081\\/jars\"}'),
(21,22,NULL,NULL,'page','hit','created_contact',21,'2026-02-03 08:00:26','{\"object_description\":\"http:\\/\\/173.249.20.244\\/docker-compose.yml\"}'),
(22,23,NULL,NULL,'page','hit','created_contact',22,'2026-02-03 08:43:15','{\"object_description\":\"http:\\/\\/173.249.20.244:8081\\/SDK\\/webLanguage\"}'),
(23,25,NULL,NULL,'page','hit','created_contact',23,'2026-02-03 10:24:51','{\"object_description\":\"http:\\/\\/173.249.20.244:8081\\/login\"}'),
(24,26,NULL,NULL,'page','hit','created_contact',24,'2026-02-03 13:34:52','{\"object_description\":\"http:\\/\\/173.249.20.244:8081\\/SDK\\/webLanguage\"}'),
(25,27,NULL,NULL,'page','hit','created_contact',25,'2026-02-03 13:54:01','{\"object_description\":\"http:\\/\\/173.249.20.244\\/.aider.conf.yml\"}'),
(26,28,NULL,NULL,'page','hit','created_contact',26,'2026-02-03 20:16:29','{\"object_description\":\"http:\\/\\/173.249.20.244:8081\\/SDK\\/webLanguage\"}'),
(27,29,NULL,NULL,'page','hit','created_contact',27,'2026-02-03 23:33:48','{\"object_description\":\"http:\\/\\/173.249.20.244:8081\\/jars\"}'),
(28,30,NULL,NULL,'page','hit','created_contact',28,'2026-02-04 05:13:19','{\"object_description\":\"http:\\/\\/173.249.20.244:8081\\/login\"}'),
(29,31,NULL,NULL,'page','hit','created_contact',29,'2026-02-04 07:21:58','{\"object_description\":\"http:\\/\\/173.249.20.244:8081\\/jars\"}'),
(30,32,NULL,NULL,'page','hit','created_contact',30,'2026-02-04 08:16:41','{\"object_description\":\"http:\\/\\/173.249.20.244:8081\\/SDK\\/webLanguage\"}'),
(31,34,NULL,NULL,'page','hit','created_contact',31,'2026-02-04 11:02:22','{\"object_description\":\"http:\\/\\/173.249.20.244:8081\\/wiki\"}');
/*!40000 ALTER TABLE `lead_event_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lead_fields`
--
DROP TABLE IF EXISTS `lead_fields`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `lead_fields` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`label` varchar(191) NOT NULL,
`alias` varchar(191) NOT NULL,
`type` varchar(50) NOT NULL,
`field_group` varchar(191) DEFAULT NULL,
`default_value` longtext DEFAULT NULL,
`is_required` tinyint(1) NOT NULL,
`is_fixed` tinyint(1) NOT NULL,
`is_visible` tinyint(1) NOT NULL,
`is_short_visible` tinyint(1) NOT NULL DEFAULT 0,
`is_listable` tinyint(1) NOT NULL,
`is_publicly_updatable` tinyint(1) NOT NULL,
`is_unique_identifer` tinyint(1) DEFAULT NULL,
`is_index` tinyint(1) NOT NULL DEFAULT 0,
`char_length_limit` int(11) DEFAULT NULL,
`field_order` int(11) DEFAULT NULL,
`object` varchar(191) DEFAULT NULL,
`properties` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`column_is_not_created` tinyint(1) NOT NULL DEFAULT 0,
`column_is_not_removed` tinyint(1) NOT NULL DEFAULT 0,
`original_is_published_value` tinyint(1) NOT NULL DEFAULT 0,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `idx_object_field_order_is_published` (`object`,`field_order`,`is_published`)
) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lead_fields`
--
LOCK TABLES `lead_fields` WRITE;
/*!40000 ALTER TABLE `lead_fields` DISABLE KEYS */;
INSERT INTO `lead_fields` VALUES
(1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Title','title','lookup','core',NULL,0,1,1,0,1,0,0,0,NULL,1,'lead','a:1:{s:4:\"list\";a:3:{i:0;s:2:\"Mr\";i:1;s:3:\"Mrs\";i:2;s:4:\"Miss\";}}',0,0,0,'e5a68cc6-865d-44e0-a2ad-568890ef705b'),
(2,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'First Name','firstname','text','core',NULL,0,1,1,1,1,0,0,0,64,2,'lead','a:0:{}',0,0,0,'8cdfb821-4717-40f9-a8f8-cd5d34904e5c'),
(3,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Last Name','lastname','text','core',NULL,0,1,1,1,1,0,0,0,64,3,'lead','a:0:{}',0,0,0,'df902a67-bf74-4802-a443-2707d07885d9'),
(4,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Primary company','company','text','core',NULL,0,1,1,0,1,0,0,0,64,4,'lead','a:0:{}',0,0,0,'7214b717-e17f-44da-b6e0-69e67908c00b'),
(5,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Position','position','text','core',NULL,0,1,1,0,1,0,0,0,64,5,'lead','a:0:{}',0,0,0,'e2e4dfc6-2fb6-4cc0-97de-8f1836ea4449'),
(6,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Email','email','email','core',NULL,0,1,1,1,1,0,1,1,64,6,'lead','a:0:{}',0,0,0,'196278d7-fc5c-45a7-8793-9cfe26de5985'),
(7,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Mobile','mobile','tel','core',NULL,0,1,1,0,1,0,0,0,NULL,7,'lead','a:0:{}',0,0,0,'7ea0c76b-8dec-4c78-9202-8d11ddcd69af'),
(8,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Phone','phone','tel','core',NULL,0,1,1,0,1,0,0,0,NULL,8,'lead','a:0:{}',0,0,0,'62f5362a-5414-4521-b1d0-2e02b1ae2332'),
(9,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Points','points','number','core','0',0,1,1,0,1,0,0,0,NULL,9,'lead','a:0:{}',0,0,0,'3d0d002a-d20b-4f8f-ae14-ac6eb546be6e'),
(10,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Fax','fax','tel','core',NULL,0,0,1,0,1,0,0,0,NULL,10,'lead','a:0:{}',0,0,0,'0ec1078a-4f0b-4a9a-b6bf-7c288c8d1841'),
(11,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Address Line 1','address1','text','core',NULL,0,1,1,0,1,0,0,0,64,11,'lead','a:0:{}',0,0,0,'5adf27b3-4ed1-40a1-a3d5-28efff11728e'),
(12,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Address Line 2','address2','text','core',NULL,0,1,1,0,1,0,0,0,64,12,'lead','a:0:{}',0,0,0,'38c24d7d-5462-45ad-a8ff-ec395470e5c7'),
(13,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'City','city','text','core',NULL,0,1,1,0,1,0,0,0,64,13,'lead','a:0:{}',0,0,0,'2e0b4cfb-c03f-4e9c-8e51-3ae7ba052696'),
(14,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'State','state','region','core',NULL,0,1,1,0,1,0,0,0,NULL,14,'lead','a:0:{}',0,0,0,'450c397b-c758-415f-bcc8-2f6db6037a54'),
(15,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Zip Code','zipcode','text','core',NULL,0,1,1,0,1,0,0,0,64,15,'lead','a:0:{}',0,0,0,'45aaf590-3fda-4947-a797-3e26c0b08b7b'),
(16,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Country','country','country','core',NULL,0,1,1,0,1,0,0,0,NULL,16,'lead','a:0:{}',0,0,0,'d6dbd592-a4ed-4fb9-a9a1-7b83ab5bff55'),
(17,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Preferred Locale','preferred_locale','locale','core',NULL,0,1,1,0,1,0,0,0,NULL,17,'lead','a:0:{}',0,0,0,'20381622-aa0a-49d1-8432-72861cdc229e'),
(18,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Preferred Timezone','timezone','timezone','core',NULL,0,1,1,0,1,0,0,0,NULL,18,'lead','a:0:{}',0,0,0,'2926a123-6780-4554-9d79-c58d3a4acb29'),
(19,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Date Last Active','last_active','datetime','core',NULL,0,1,1,0,1,0,0,0,NULL,19,'lead','a:0:{}',0,0,0,'3065bc0b-8925-4220-8429-a8b887126087'),
(20,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Attribution Date','attribution_date','datetime','core',NULL,0,1,1,0,1,0,0,0,NULL,20,'lead','a:0:{}',0,0,0,'ffd96828-c98e-4c7c-a4a1-3371268dccd6'),
(21,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Attribution','attribution','number','core',NULL,0,1,1,0,1,0,0,0,NULL,21,'lead','a:2:{s:9:\"roundmode\";i:4;s:5:\"scale\";i:2;}',0,0,0,'e9a70d42-5494-4008-8cd9-e2259619958e'),
(22,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Website','website','url','core',NULL,0,0,1,0,1,0,0,0,64,22,'lead','a:0:{}',0,0,0,'9c09ccb9-bdfa-4573-a2e9-d47ea0e09cf1'),
(23,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Facebook','facebook','text','social',NULL,0,0,1,0,1,0,0,0,64,23,'lead','a:0:{}',0,0,0,'18021b6f-7a23-4eaf-a652-4fd973a7839b'),
(24,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Foursquare','foursquare','text','social',NULL,0,0,1,0,1,0,0,0,64,24,'lead','a:0:{}',0,0,0,'63107566-63b6-4dcc-aef2-854be9b00471'),
(25,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Instagram','instagram','text','social',NULL,0,0,1,0,1,0,0,0,64,25,'lead','a:0:{}',0,0,0,'f105be9f-7c0f-4da7-b616-61f61799185d'),
(26,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'mautic.lead.field.linkedin','linkedin','text','social',NULL,0,0,1,0,1,0,0,0,64,26,'lead','a:0:{}',0,0,0,'fb981e8a-0b32-4017-8011-a50f940a2594'),
(27,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Skype','skype','text','social',NULL,0,0,1,0,1,0,0,0,64,27,'lead','a:0:{}',0,0,0,'a5cc899c-a893-401c-9655-317fe3ebc954'),
(28,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Twitter','twitter','text','social',NULL,0,0,1,0,1,0,0,0,64,28,'lead','a:0:{}',0,0,0,'3608bc95-8a68-4dc1-b94c-e16d176c7cf5'),
(29,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Address 1','companyaddress1','text','core',NULL,0,1,1,0,1,0,0,0,64,1,'company','a:0:{}',0,0,0,'42ca9f72-d3a3-4746-b777-28c7632eb6c1'),
(30,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Address 2','companyaddress2','text','core',NULL,0,1,1,0,1,0,0,0,64,2,'company','a:0:{}',0,0,0,'29c616b6-572d-4fbc-8903-ca83f6192e05'),
(31,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Company Email','companyemail','email','core',NULL,0,1,1,0,1,0,0,0,64,3,'company','a:0:{}',0,0,0,'5079a24d-a6ae-4756-a2cf-74bac4a53b95'),
(32,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Phone','companyphone','tel','core',NULL,0,1,1,0,1,0,0,0,NULL,4,'company','a:0:{}',0,0,0,'5b6a28ec-7443-4f7e-b3b3-ffd6cedc2e7f'),
(33,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'City','companycity','text','core',NULL,0,1,1,0,1,0,0,0,64,5,'company','a:0:{}',0,0,0,'33ebcdc8-d566-4596-b245-e869a941ecd7'),
(34,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'State','companystate','region','core',NULL,0,1,1,0,1,0,0,0,NULL,6,'company','a:0:{}',0,0,0,'bd2f6d99-5fca-4822-9c3d-30996092e993'),
(35,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Zip Code','companyzipcode','text','core',NULL,0,1,1,0,1,0,0,0,64,7,'company','a:0:{}',0,0,0,'a1b69dbc-2de7-4eac-aba7-e2e865a2a053'),
(36,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Country','companycountry','country','core',NULL,0,1,1,0,1,0,0,0,NULL,8,'company','a:0:{}',0,0,0,'56cc8ca1-8988-4f8c-bbb7-4a9af9646d56'),
(37,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Company Name','companyname','text','core',NULL,1,1,1,0,1,0,1,1,64,9,'company','a:0:{}',0,0,0,'a0dcbf33-82ce-464f-8c34-45afe0fad10d'),
(38,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Website','companywebsite','url','core',NULL,0,1,1,0,1,0,0,0,64,10,'company','a:0:{}',0,0,0,'7b69b41c-c9cb-4cac-a5d4-bc39fed9b29b'),
(39,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Number of Employees','companynumber_of_employees','number','professional',NULL,0,0,1,0,1,0,0,0,NULL,11,'company','a:2:{s:9:\"roundmode\";i:4;s:5:\"scale\";i:0;}',0,0,0,'9cae05c5-0bbd-4471-b73c-45c0f56b6746'),
(40,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Fax','companyfax','tel','professional',NULL,0,0,1,0,1,0,0,0,NULL,12,'company','a:0:{}',0,0,0,'4726b1e2-8ccb-43fc-8375-973dd1de6557'),
(41,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Annual Revenue','companyannual_revenue','number','professional',NULL,0,0,1,0,1,0,0,0,NULL,13,'company','a:2:{s:9:\"roundmode\";i:4;s:5:\"scale\";i:2;}',0,0,0,'42101299-0e77-44ac-bdc3-5fdb05318cb2'),
(42,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Industry','companyindustry','select','professional',NULL,0,1,1,0,1,0,0,0,64,14,'company','a:1:{s:4:\"list\";a:41:{i:0;a:2:{s:5:\"label\";s:19:\"Aerospace & Defense\";s:5:\"value\";s:19:\"Aerospace & Defense\";}i:1;a:2:{s:5:\"label\";s:11:\"Agriculture\";s:5:\"value\";s:11:\"Agriculture\";}i:2;a:2:{s:5:\"label\";s:7:\"Apparel\";s:5:\"value\";s:7:\"Apparel\";}i:3;a:2:{s:5:\"label\";s:21:\"Automotive & Assembly\";s:5:\"value\";s:21:\"Automotive & Assembly\";}i:4;a:2:{s:5:\"label\";s:7:\"Banking\";s:5:\"value\";s:7:\"Banking\";}i:5;a:2:{s:5:\"label\";s:13:\"Biotechnology\";s:5:\"value\";s:13:\"Biotechnology\";}i:6;a:2:{s:5:\"label\";s:9:\"Chemicals\";s:5:\"value\";s:9:\"Chemicals\";}i:7;a:2:{s:5:\"label\";s:14:\"Communications\";s:5:\"value\";s:14:\"Communications\";}i:8;a:2:{s:5:\"label\";s:12:\"Construction\";s:5:\"value\";s:12:\"Construction\";}i:9;a:2:{s:5:\"label\";s:23:\"Consumer Packaged Goods\";s:5:\"value\";s:23:\"Consumer Packaged Goods\";}i:10;a:2:{s:5:\"label\";s:9:\"Education\";s:5:\"value\";s:9:\"Education\";}i:11;a:2:{s:5:\"label\";s:11:\"Electronics\";s:5:\"value\";s:11:\"Electronics\";}i:12;a:2:{s:5:\"label\";s:6:\"Energy\";s:5:\"value\";s:6:\"Energy\";}i:13;a:2:{s:5:\"label\";s:11:\"Engineering\";s:5:\"value\";s:11:\"Engineering\";}i:14;a:2:{s:5:\"label\";s:13:\"Entertainment\";s:5:\"value\";s:13:\"Entertainment\";}i:15;a:2:{s:5:\"label\";s:13:\"Environmental\";s:5:\"value\";s:13:\"Environmental\";}i:16;a:2:{s:5:\"label\";s:7:\"Finance\";s:5:\"value\";s:7:\"Finance\";}i:17;a:2:{s:5:\"label\";s:15:\"Food & Beverage\";s:5:\"value\";s:15:\"Food & Beverage\";}i:18;a:2:{s:5:\"label\";s:10:\"Government\";s:5:\"value\";s:10:\"Government\";}i:19;a:2:{s:5:\"label\";s:10:\"Healthcare\";s:5:\"value\";s:10:\"Healthcare\";}i:20;a:2:{s:5:\"label\";s:11:\"Hospitality\";s:5:\"value\";s:11:\"Hospitality\";}i:21;a:2:{s:5:\"label\";s:9:\"Insurance\";s:5:\"value\";s:9:\"Insurance\";}i:22;a:2:{s:5:\"label\";s:9:\"Machinery\";s:5:\"value\";s:9:\"Machinery\";}i:23;a:2:{s:5:\"label\";s:13:\"Manufacturing\";s:5:\"value\";s:13:\"Manufacturing\";}i:24;a:2:{s:5:\"label\";s:5:\"Media\";s:5:\"value\";s:5:\"Media\";}i:25;a:2:{s:5:\"label\";s:15:\"Metals & Mining\";s:5:\"value\";s:15:\"Metals & Mining\";}i:26;a:2:{s:5:\"label\";s:14:\"Not for Profit\";s:5:\"value\";s:14:\"Not for Profit\";}i:27;a:2:{s:5:\"label\";s:9:\"Oil & Gas\";s:5:\"value\";s:9:\"Oil & Gas\";}i:28;a:2:{s:5:\"label\";s:17:\"Packaging & Paper\";s:5:\"value\";s:17:\"Packaging & Paper\";}i:29;a:2:{s:5:\"label\";s:36:\"Private Equity & Principal Investors\";s:5:\"value\";s:36:\"Private Equity & Principal Investors\";}i:30;a:2:{s:5:\"label\";s:10:\"Recreation\";s:5:\"value\";s:10:\"Recreation\";}i:31;a:2:{s:5:\"label\";s:11:\"Real Estate\";s:5:\"value\";s:11:\"Real Estate\";}i:32;a:2:{s:5:\"label\";s:6:\"Retail\";s:5:\"value\";s:6:\"Retail\";}i:33;a:2:{s:5:\"label\";s:14:\"Semiconductors\";s:5:\"value\";s:14:\"Semiconductors\";}i:34;a:2:{s:5:\"label\";s:8:\"Shipping\";s:5:\"value\";s:8:\"Shipping\";}i:35;a:2:{s:5:\"label\";s:13:\"Social Sector\";s:5:\"value\";s:13:\"Social Sector\";}i:36;a:2:{s:5:\"label\";s:10:\"Technology\";s:5:\"value\";s:10:\"Technology\";}i:37;a:2:{s:5:\"label\";s:18:\"Telecommunications\";s:5:\"value\";s:18:\"Telecommunications\";}i:38;a:2:{s:5:\"label\";s:14:\"Transportation\";s:5:\"value\";s:14:\"Transportation\";}i:39;a:2:{s:5:\"label\";s:9:\"Utilities\";s:5:\"value\";s:9:\"Utilities\";}i:40;a:2:{s:5:\"label\";s:5:\"Other\";s:5:\"value\";s:5:\"Other\";}}}',0,0,0,'f280cbea-fce7-4703-9619-4c6cb7feea99'),
(43,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Description','companydescription','text','professional',NULL,0,1,1,0,1,0,0,0,64,15,'company','a:0:{}',0,0,0,'e1ec7521-7c87-492c-ac91-74dcd81e3dac');
/*!40000 ALTER TABLE `lead_fields` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lead_frequencyrules`
--
DROP TABLE IF EXISTS `lead_frequencyrules`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `lead_frequencyrules` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`lead_id` bigint(20) unsigned NOT NULL,
`date_added` datetime NOT NULL,
`frequency_number` smallint(6) DEFAULT NULL,
`frequency_time` varchar(25) DEFAULT NULL,
`channel` varchar(191) NOT NULL,
`preferred_channel` tinyint(1) NOT NULL,
`pause_from_date` datetime DEFAULT NULL,
`pause_to_date` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `IDX_AA8A57F455458D` (`lead_id`),
KEY `channel_frequency` (`channel`),
KEY `idx_frequency_date_added` (`lead_id`,`date_added`),
CONSTRAINT `FK_AA8A57F455458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lead_frequencyrules`
--
LOCK TABLES `lead_frequencyrules` WRITE;
/*!40000 ALTER TABLE `lead_frequencyrules` DISABLE KEYS */;
/*!40000 ALTER TABLE `lead_frequencyrules` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lead_ips_xref`
--
DROP TABLE IF EXISTS `lead_ips_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `lead_ips_xref` (
`lead_id` bigint(20) unsigned NOT NULL,
`ip_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`lead_id`,`ip_id`),
KEY `IDX_9EED7E66A03F5E9F` (`ip_id`),
CONSTRAINT `FK_9EED7E6655458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_9EED7E66A03F5E9F` FOREIGN KEY (`ip_id`) REFERENCES `ip_addresses` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lead_ips_xref`
--
LOCK TABLES `lead_ips_xref` WRITE;
/*!40000 ALTER TABLE `lead_ips_xref` DISABLE KEYS */;
INSERT INTO `lead_ips_xref` VALUES
(1,1),
(2,1),
(3,2),
(4,3),
(5,4),
(6,5),
(7,7),
(8,8),
(10,8),
(11,9),
(12,11),
(13,10),
(14,10),
(15,10),
(16,10),
(17,1),
(18,12),
(19,5),
(20,8),
(21,1),
(22,8),
(23,7),
(25,14),
(26,5),
(27,8),
(28,7),
(29,1),
(30,15),
(31,1),
(32,7),
(34,16);
/*!40000 ALTER TABLE `lead_ips_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lead_list_projects_xref`
--
DROP TABLE IF EXISTS `lead_list_projects_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `lead_list_projects_xref` (
`leadlist_id` int(10) unsigned NOT NULL,
`project_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`leadlist_id`,`project_id`),
KEY `IDX_4B06CBD0166D1F9C` (`project_id`),
CONSTRAINT `FK_4B06CBD0166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_4B06CBD0B9FC8874` FOREIGN KEY (`leadlist_id`) REFERENCES `lead_lists` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lead_list_projects_xref`
--
LOCK TABLES `lead_list_projects_xref` WRITE;
/*!40000 ALTER TABLE `lead_list_projects_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `lead_list_projects_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lead_lists`
--
DROP TABLE IF EXISTS `lead_lists`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `lead_lists` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`alias` varchar(191) NOT NULL,
`public_name` varchar(191) NOT NULL,
`filters` longtext NOT NULL COMMENT '(DC2Type:array)',
`is_global` tinyint(1) NOT NULL,
`is_preference_center` tinyint(1) NOT NULL,
`last_built_date` datetime DEFAULT NULL,
`last_built_time` double DEFAULT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `IDX_6EC1522A12469DE2` (`category_id`),
KEY `lead_list_alias` (`alias`),
CONSTRAINT `FK_6EC1522A12469DE2` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lead_lists`
--
LOCK TABLES `lead_lists` WRITE;
/*!40000 ALTER TABLE `lead_lists` DISABLE KEYS */;
INSERT INTO `lead_lists` VALUES
(1,NULL,1,'2026-02-04 11:38:21',1,'admin admin','2026-02-04 11:38:21',1,'admin admin',NULL,NULL,NULL,'Segment1',NULL,'segment1','contacts','a:0:{}',1,0,NULL,NULL,'658a489b-66f7-48f4-b19a-923cb1178121');
/*!40000 ALTER TABLE `lead_lists` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lead_lists_leads`
--
DROP TABLE IF EXISTS `lead_lists_leads`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `lead_lists_leads` (
`leadlist_id` int(10) unsigned NOT NULL,
`lead_id` bigint(20) unsigned NOT NULL,
`date_added` datetime NOT NULL,
`manually_removed` tinyint(1) NOT NULL,
`manually_added` tinyint(1) NOT NULL,
PRIMARY KEY (`leadlist_id`,`lead_id`),
KEY `IDX_F5F47C7C55458D` (`lead_id`),
KEY `manually_removed` (`manually_removed`),
KEY `lead_id_lists_id_removed` (`lead_id`,`leadlist_id`,`manually_removed`),
CONSTRAINT `FK_F5F47C7C55458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_F5F47C7CB9FC8874` FOREIGN KEY (`leadlist_id`) REFERENCES `lead_lists` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lead_lists_leads`
--
LOCK TABLES `lead_lists_leads` WRITE;
/*!40000 ALTER TABLE `lead_lists_leads` DISABLE KEYS */;
/*!40000 ALTER TABLE `lead_lists_leads` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lead_notes`
--
DROP TABLE IF EXISTS `lead_notes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `lead_notes` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`lead_id` bigint(20) unsigned NOT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`text` longtext NOT NULL,
`type` varchar(50) DEFAULT NULL,
`date_time` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `IDX_67FC6B0355458D` (`lead_id`),
CONSTRAINT `FK_67FC6B0355458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lead_notes`
--
LOCK TABLES `lead_notes` WRITE;
/*!40000 ALTER TABLE `lead_notes` DISABLE KEYS */;
/*!40000 ALTER TABLE `lead_notes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lead_points_change_log`
--
DROP TABLE IF EXISTS `lead_points_change_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `lead_points_change_log` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`lead_id` bigint(20) unsigned NOT NULL,
`ip_id` int(10) unsigned DEFAULT NULL,
`group_id` int(10) unsigned DEFAULT NULL,
`type` tinytext NOT NULL,
`event_name` varchar(191) NOT NULL,
`action_name` varchar(191) NOT NULL,
`delta` int(11) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `IDX_949C2CCC55458D` (`lead_id`),
KEY `IDX_949C2CCCA03F5E9F` (`ip_id`),
KEY `IDX_949C2CCCFE54D947` (`group_id`),
KEY `point_date_added` (`date_added`),
CONSTRAINT `FK_949C2CCC55458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_949C2CCCA03F5E9F` FOREIGN KEY (`ip_id`) REFERENCES `ip_addresses` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_949C2CCCFE54D947` FOREIGN KEY (`group_id`) REFERENCES `point_groups` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lead_points_change_log`
--
LOCK TABLES `lead_points_change_log` WRITE;
/*!40000 ALTER TABLE `lead_points_change_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `lead_points_change_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lead_stages_change_log`
--
DROP TABLE IF EXISTS `lead_stages_change_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `lead_stages_change_log` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`lead_id` bigint(20) unsigned NOT NULL,
`stage_id` int(10) unsigned DEFAULT NULL,
`event_name` varchar(191) NOT NULL,
`action_name` varchar(191) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `IDX_73B42EF355458D` (`lead_id`),
KEY `IDX_73B42EF32298D193` (`stage_id`),
KEY `lead_stages_change_log_date_added` (`date_added`),
CONSTRAINT `FK_73B42EF32298D193` FOREIGN KEY (`stage_id`) REFERENCES `stages` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_73B42EF355458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lead_stages_change_log`
--
LOCK TABLES `lead_stages_change_log` WRITE;
/*!40000 ALTER TABLE `lead_stages_change_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `lead_stages_change_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lead_tags`
--
DROP TABLE IF EXISTS `lead_tags`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `lead_tags` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`tag` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `lead_tag_search` (`tag`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lead_tags`
--
LOCK TABLES `lead_tags` WRITE;
/*!40000 ALTER TABLE `lead_tags` DISABLE KEYS */;
/*!40000 ALTER TABLE `lead_tags` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lead_tags_xref`
--
DROP TABLE IF EXISTS `lead_tags_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `lead_tags_xref` (
`lead_id` bigint(20) unsigned NOT NULL,
`tag_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`lead_id`,`tag_id`),
KEY `IDX_F2E51EB6BAD26311` (`tag_id`),
CONSTRAINT `FK_F2E51EB655458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_F2E51EB6BAD26311` FOREIGN KEY (`tag_id`) REFERENCES `lead_tags` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lead_tags_xref`
--
LOCK TABLES `lead_tags_xref` WRITE;
/*!40000 ALTER TABLE `lead_tags_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `lead_tags_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `lead_utmtags`
--
DROP TABLE IF EXISTS `lead_utmtags`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `lead_utmtags` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`lead_id` bigint(20) unsigned NOT NULL,
`date_added` datetime NOT NULL,
`query` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`referer` longtext DEFAULT NULL,
`remote_host` varchar(191) DEFAULT NULL,
`url` longtext DEFAULT NULL,
`user_agent` longtext DEFAULT NULL,
`utm_campaign` varchar(191) DEFAULT NULL,
`utm_content` varchar(191) DEFAULT NULL,
`utm_medium` varchar(191) DEFAULT NULL,
`utm_source` varchar(191) DEFAULT NULL,
`utm_term` varchar(191) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `IDX_C51BCB8D55458D` (`lead_id`),
KEY `utm_date_added` (`date_added`),
CONSTRAINT `FK_C51BCB8D55458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `lead_utmtags`
--
LOCK TABLES `lead_utmtags` WRITE;
/*!40000 ALTER TABLE `lead_utmtags` DISABLE KEYS */;
/*!40000 ALTER TABLE `lead_utmtags` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `leads`
--
DROP TABLE IF EXISTS `leads`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `leads` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`owner_id` int(10) unsigned DEFAULT NULL,
`stage_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`points` int(11) NOT NULL,
`last_active` datetime DEFAULT NULL,
`internal` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`social_cache` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`date_identified` datetime DEFAULT NULL,
`preferred_profile_image` varchar(191) DEFAULT NULL,
`title` varchar(191) DEFAULT NULL,
`firstname` varchar(191) DEFAULT NULL,
`lastname` varchar(191) DEFAULT NULL,
`company` varchar(191) DEFAULT NULL,
`position` varchar(191) DEFAULT NULL,
`email` varchar(191) DEFAULT NULL,
`phone` varchar(191) DEFAULT NULL,
`mobile` varchar(191) DEFAULT NULL,
`address1` varchar(191) DEFAULT NULL,
`address2` varchar(191) DEFAULT NULL,
`city` varchar(191) DEFAULT NULL,
`state` varchar(191) DEFAULT NULL,
`zipcode` varchar(191) DEFAULT NULL,
`timezone` varchar(191) DEFAULT NULL,
`country` varchar(191) DEFAULT NULL,
`fax` varchar(191) DEFAULT NULL,
`preferred_locale` varchar(191) DEFAULT NULL,
`attribution_date` datetime DEFAULT NULL,
`attribution` double DEFAULT NULL,
`website` varchar(191) DEFAULT NULL,
`facebook` varchar(191) DEFAULT NULL,
`foursquare` varchar(191) DEFAULT NULL,
`instagram` varchar(191) DEFAULT NULL,
`linkedin` varchar(191) DEFAULT NULL,
`skype` varchar(191) DEFAULT NULL,
`twitter` varchar(191) DEFAULT NULL,
`generated_email_domain` varchar(255) GENERATED ALWAYS AS (substr(`email`,locate('@',`email`) + 1)) VIRTUAL COMMENT '(DC2Type:generated)',
PRIMARY KEY (`id`),
KEY `IDX_179045527E3C61F9` (`owner_id`),
KEY `IDX_179045522298D193` (`stage_id`),
KEY `lead_date_added` (`date_added`),
KEY `lead_date_modified` (`date_modified`),
KEY `date_identified` (`date_identified`),
KEY `fax_search` (`fax`),
KEY `preferred_locale_search` (`preferred_locale`),
KEY `attribution_date_search` (`attribution_date`),
KEY `attribution_search` (`attribution`),
KEY `website_search` (`website`),
KEY `facebook_search` (`facebook`),
KEY `foursquare_search` (`foursquare`),
KEY `instagram_search` (`instagram`),
KEY `linkedin_search` (`linkedin`),
KEY `skype_search` (`skype`),
KEY `twitter_search` (`twitter`),
KEY `contact_attribution` (`attribution`,`attribution_date`),
KEY `date_added_country_index` (`date_added`,`country`),
KEY `email_search` (`email`),
KEY `generated_email_domain` (`generated_email_domain`),
CONSTRAINT `FK_179045522298D193` FOREIGN KEY (`stage_id`) REFERENCES `stages` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_179045527E3C61F9` FOREIGN KEY (`owner_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `leads`
--
LOCK TABLES `leads` WRITE;
/*!40000 ALTER TABLE `leads` DISABLE KEYS */;
INSERT INTO `leads` VALUES
(1,NULL,NULL,1,'2026-02-02 04:18:35',NULL,NULL,'2026-02-02 04:18:35',NULL,NULL,NULL,NULL,NULL,0,'2026-02-02 04:18:35','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(2,NULL,NULL,1,'2026-02-02 04:26:36',NULL,NULL,'2026-02-02 04:26:36',NULL,NULL,NULL,NULL,NULL,0,'2026-02-02 04:26:37','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(3,NULL,NULL,1,'2026-02-02 05:25:49',NULL,NULL,'2026-02-02 05:25:49',NULL,NULL,NULL,NULL,NULL,0,'2026-02-02 05:25:49','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(4,NULL,NULL,1,'2026-02-02 06:05:19',NULL,NULL,'2026-02-02 06:05:19',NULL,NULL,NULL,NULL,NULL,0,'2026-02-02 06:05:19','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(5,NULL,NULL,1,'2026-02-02 07:02:24',NULL,NULL,'2026-02-02 07:02:24',NULL,NULL,NULL,NULL,NULL,0,'2026-02-02 07:02:24','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(6,NULL,NULL,1,'2026-02-02 08:45:19',NULL,NULL,'2026-02-02 08:45:19',NULL,NULL,NULL,NULL,NULL,0,'2026-02-02 08:45:19','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(7,NULL,NULL,1,'2026-02-02 10:39:54',NULL,NULL,'2026-02-02 10:39:54',NULL,NULL,NULL,NULL,NULL,0,'2026-02-02 10:39:54','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(8,NULL,NULL,1,'2026-02-02 10:41:24',NULL,NULL,'2026-02-02 10:41:24',NULL,NULL,NULL,NULL,NULL,0,'2026-02-02 10:41:24','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(9,1,NULL,1,'2026-02-02 15:42:48',NULL,NULL,'2026-02-02 15:42:48',1,'admin admin',NULL,NULL,'admin admin',0,'2026-02-03 09:13:02','a:0:{}','a:0:{}','2026-02-02 15:42:48','custom','bouk','ameni',NULL,NULL,NULL,'boukottayaamani@gmail.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'gmail.com'),
(10,NULL,NULL,1,'2026-02-02 16:11:43',NULL,NULL,'2026-02-02 16:11:43',NULL,NULL,NULL,NULL,NULL,0,'2026-02-02 16:11:43','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(11,NULL,NULL,1,'2026-02-02 19:09:41',NULL,NULL,'2026-02-02 19:09:41',NULL,NULL,NULL,NULL,NULL,0,'2026-02-02 19:09:41','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(12,NULL,NULL,1,'2026-02-02 19:12:27',NULL,NULL,'2026-02-02 19:12:27',NULL,NULL,NULL,NULL,NULL,0,'2026-02-02 19:12:27','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(13,NULL,NULL,1,'2026-02-02 19:12:27',NULL,NULL,'2026-02-02 19:12:27',NULL,NULL,NULL,NULL,NULL,0,'2026-02-02 19:12:27','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(14,NULL,NULL,1,'2026-02-02 19:12:27',NULL,NULL,'2026-02-02 19:12:27',NULL,NULL,NULL,NULL,NULL,0,'2026-02-02 19:12:27','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(15,NULL,NULL,1,'2026-02-02 19:12:28',NULL,NULL,'2026-02-02 19:12:28',NULL,NULL,NULL,NULL,NULL,0,'2026-02-02 19:12:28','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(16,NULL,NULL,1,'2026-02-02 19:12:28',NULL,NULL,'2026-02-02 19:12:28',NULL,NULL,NULL,NULL,NULL,0,'2026-02-02 19:12:28','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(17,NULL,NULL,1,'2026-02-02 22:07:02',NULL,NULL,'2026-02-02 22:07:02',NULL,NULL,NULL,NULL,NULL,0,'2026-02-02 22:07:02','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(18,NULL,NULL,1,'2026-02-03 02:55:56',NULL,NULL,'2026-02-03 02:55:56',NULL,NULL,NULL,NULL,NULL,0,'2026-02-03 02:55:56','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(19,NULL,NULL,1,'2026-02-03 03:06:20',NULL,NULL,'2026-02-03 03:06:20',NULL,NULL,NULL,NULL,NULL,0,'2026-02-03 03:06:20','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(20,NULL,NULL,1,'2026-02-03 05:00:21',NULL,NULL,'2026-02-03 05:00:21',NULL,NULL,NULL,NULL,NULL,0,'2026-02-03 05:00:21','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(21,NULL,NULL,1,'2026-02-03 05:52:17',NULL,NULL,'2026-02-03 05:52:17',NULL,NULL,NULL,NULL,NULL,0,'2026-02-03 05:52:17','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(22,NULL,NULL,1,'2026-02-03 08:00:26',NULL,NULL,'2026-02-03 08:00:26',NULL,NULL,NULL,NULL,NULL,0,'2026-02-03 08:00:26','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(23,NULL,NULL,1,'2026-02-03 08:43:15',NULL,NULL,'2026-02-03 08:43:15',NULL,NULL,NULL,NULL,NULL,0,'2026-02-03 08:43:15','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(24,1,NULL,1,'2026-02-03 09:34:17',NULL,NULL,'2026-02-03 09:34:17',1,'admin admin',NULL,NULL,NULL,0,NULL,'a:0:{}','a:0:{}','2026-02-03 09:34:17',NULL,NULL,'Boukottaya','ameni',NULL,NULL,'ameniboukottaya@gmail.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'gmail.com'),
(25,NULL,NULL,1,'2026-02-03 10:24:51',NULL,NULL,'2026-02-03 10:24:51',NULL,NULL,NULL,NULL,NULL,0,'2026-02-03 10:24:51','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(26,NULL,NULL,1,'2026-02-03 13:34:52',NULL,NULL,'2026-02-03 13:34:52',NULL,NULL,NULL,NULL,NULL,0,'2026-02-03 13:34:52','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(27,NULL,NULL,1,'2026-02-03 13:54:01',NULL,NULL,'2026-02-03 13:54:01',NULL,NULL,NULL,NULL,NULL,0,'2026-02-03 13:54:01','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(28,NULL,NULL,1,'2026-02-03 20:16:29',NULL,NULL,'2026-02-03 20:16:29',NULL,NULL,NULL,NULL,NULL,0,'2026-02-03 20:16:29','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(29,NULL,NULL,1,'2026-02-03 23:33:47',NULL,NULL,'2026-02-03 23:33:47',NULL,NULL,NULL,NULL,NULL,0,'2026-02-03 23:33:48','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(30,NULL,NULL,1,'2026-02-04 05:13:19',NULL,NULL,'2026-02-04 05:13:19',NULL,NULL,NULL,NULL,NULL,0,'2026-02-04 05:13:19','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(31,NULL,NULL,1,'2026-02-04 07:21:57',NULL,NULL,'2026-02-04 07:21:57',NULL,NULL,NULL,NULL,NULL,0,'2026-02-04 07:21:58','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(32,NULL,NULL,1,'2026-02-04 08:16:41',NULL,NULL,'2026-02-04 08:16:41',NULL,NULL,NULL,NULL,NULL,0,'2026-02-04 08:16:41','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(33,1,NULL,1,'2026-02-04 10:51:02',NULL,NULL,'2026-02-04 10:51:02',1,'admin admin',NULL,NULL,NULL,0,NULL,'a:0:{}','a:0:{}','2026-02-04 10:51:02','gravatar','BEN SALAH MOHAMED','MOHAMED','BEN SALAH',NULL,NULL,'mobensa.icb@hexabyte.tn',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'hexabyte.tn'),
(34,NULL,NULL,1,'2026-02-04 11:02:21',NULL,NULL,'2026-02-04 11:02:21',NULL,NULL,NULL,NULL,NULL,0,'2026-02-04 11:02:22','a:0:{}','a:0:{}',NULL,'gravatar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(35,1,NULL,1,'2026-02-04 11:30:05',NULL,NULL,'2026-02-04 11:30:05',1,'admin admin',NULL,NULL,NULL,0,NULL,'a:0:{}','a:0:{}','2026-02-04 11:30:05',NULL,NULL,'SAID','SAMI',NULL,NULL,'contact.origine@gmail.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'gmail.com'),
(36,1,NULL,1,'2026-02-04 11:34:26',NULL,NULL,'2026-02-04 11:34:26',1,'admin admin',NULL,NULL,NULL,0,NULL,'a:0:{}','a:0:{}','2026-02-04 11:34:26','gravatar','Ranim','bouzikri',NULL,NULL,NULL,'ranim09rannou@gmail.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'gmail.com');
/*!40000 ALTER TABLE `leads` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `message_channels`
--
DROP TABLE IF EXISTS `message_channels`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `message_channels` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`message_id` int(10) unsigned NOT NULL,
`channel` varchar(191) NOT NULL,
`channel_id` int(11) DEFAULT NULL,
`properties` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT '(DC2Type:json)' CHECK (json_valid(`properties`)),
`is_enabled` tinyint(1) NOT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
UNIQUE KEY `channel_index` (`message_id`,`channel`),
KEY `IDX_FA3226A7537A1329` (`message_id`),
KEY `channel_entity_index` (`channel`,`channel_id`),
KEY `channel_enabled_index` (`channel`,`is_enabled`),
CONSTRAINT `FK_FA3226A7537A1329` FOREIGN KEY (`message_id`) REFERENCES `messages` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `message_channels`
--
LOCK TABLES `message_channels` WRITE;
/*!40000 ALTER TABLE `message_channels` DISABLE KEYS */;
INSERT INTO `message_channels` VALUES
(1,1,'email',1,'[]',1,'51215af2-7017-43c9-a530-f7e6b95992f4');
/*!40000 ALTER TABLE `message_channels` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `message_projects_xref`
--
DROP TABLE IF EXISTS `message_projects_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `message_projects_xref` (
`message_id` int(10) unsigned NOT NULL,
`project_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`message_id`,`project_id`),
KEY `IDX_13524A6E166D1F9C` (`project_id`),
CONSTRAINT `FK_13524A6E166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_13524A6E537A1329` FOREIGN KEY (`message_id`) REFERENCES `messages` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `message_projects_xref`
--
LOCK TABLES `message_projects_xref` WRITE;
/*!40000 ALTER TABLE `message_projects_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `message_projects_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `message_queue`
--
DROP TABLE IF EXISTS `message_queue`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `message_queue` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`event_id` int(10) unsigned DEFAULT NULL,
`lead_id` bigint(20) unsigned NOT NULL,
`channel` varchar(191) NOT NULL,
`channel_id` int(11) NOT NULL,
`priority` smallint(6) NOT NULL,
`max_attempts` smallint(6) NOT NULL,
`attempts` smallint(6) NOT NULL,
`success` tinyint(1) NOT NULL,
`status` varchar(191) NOT NULL,
`date_published` datetime DEFAULT NULL,
`scheduled_date` datetime DEFAULT NULL,
`last_attempt` datetime DEFAULT NULL,
`date_sent` datetime DEFAULT NULL,
`options` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
PRIMARY KEY (`id`),
KEY `IDX_805B808871F7E88B` (`event_id`),
KEY `IDX_805B808855458D` (`lead_id`),
KEY `message_status_search` (`status`),
KEY `message_date_sent` (`date_sent`),
KEY `message_scheduled_date` (`scheduled_date`),
KEY `message_priority` (`priority`),
KEY `message_success` (`success`),
KEY `message_channel_search` (`channel`,`channel_id`),
KEY `message_queue_date_published` (`date_published`),
CONSTRAINT `FK_805B808855458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_805B808871F7E88B` FOREIGN KEY (`event_id`) REFERENCES `campaign_events` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `message_queue`
--
LOCK TABLES `message_queue` WRITE;
/*!40000 ALTER TABLE `message_queue` DISABLE KEYS */;
/*!40000 ALTER TABLE `message_queue` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `messages`
--
DROP TABLE IF EXISTS `messages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `messages` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `IDX_DB021E9612469DE2` (`category_id`),
KEY `date_message_added` (`date_added`),
CONSTRAINT `FK_DB021E9612469DE2` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `messages`
--
LOCK TABLES `messages` WRITE;
/*!40000 ALTER TABLE `messages` DISABLE KEYS */;
INSERT INTO `messages` VALUES
(1,NULL,1,'2026-02-04 11:00:31',1,'admin admin','2026-02-04 11:00:31',1,'admin admin',NULL,NULL,'admin admin','MHAMED BEN SALAH',NULL,'2026-02-04 11:00:00',NULL,'14d893a6-d4e4-4db3-8322-0a0d077dd945');
/*!40000 ALTER TABLE `messages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `migrations`
--
DROP TABLE IF EXISTS `migrations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `migrations` (
`version` varchar(191) NOT NULL,
`executed_at` datetime DEFAULT NULL,
`execution_time` int(11) DEFAULT NULL,
PRIMARY KEY (`version`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `migrations`
--
LOCK TABLES `migrations` WRITE;
/*!40000 ALTER TABLE `migrations` DISABLE KEYS */;
INSERT INTO `migrations` VALUES
('Mautic\\Migrations\\Version020230615115326','2026-02-04 11:15:53',72),
('Mautic\\Migrations\\Version20191106152509','2026-02-04 11:15:55',3),
('Mautic\\Migrations\\Version20200917152259','2026-02-04 11:15:56',851),
('Mautic\\Migrations\\Version20210211081531','2026-02-04 11:16:01',923),
('Mautic\\Migrations\\Version20211020114811','2026-02-04 11:16:06',862),
('Mautic\\Migrations\\Version20211020142629','2026-02-04 11:16:06',3),
('Mautic\\Migrations\\Version20211209022550','2026-02-04 11:16:08',47),
('Mautic\\Migrations\\Version20220216161028','2026-02-04 11:16:08',3),
('Mautic\\Migrations\\Version20221010121758','2026-02-04 11:16:10',1),
('Mautic\\Migrations\\Version20230307083702','2026-02-04 11:16:12',2),
('Mautic\\Migrations\\Version20230311195347','2026-02-04 11:16:12',2),
('Mautic\\Migrations\\Version20230525202700','2026-02-04 11:16:17',3),
('Mautic\\Migrations\\Version20230615101328','2026-02-04 11:16:17',1),
('Mautic\\Migrations\\Version20230927055621','2026-02-04 11:16:18',1394),
('Mautic\\Migrations\\Version20231110103625','2026-02-04 11:16:19',1),
('Mautic\\Migrations\\Version20240704164714','2026-02-04 11:16:25',1),
('Mautic\\Migrations\\Version20240708153845','2026-02-04 11:16:25',1),
('Mautic\\Migrations\\Version20240725105507','2026-02-04 11:16:25',1),
('Mautic\\Migrations\\Version20250207035735','2026-02-04 11:16:28',931),
('Mautic\\Migrations\\Version20250804003400','2026-02-04 11:16:40',1);
/*!40000 ALTER TABLE `migrations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `monitor_post_count`
--
DROP TABLE IF EXISTS `monitor_post_count`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `monitor_post_count` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`monitor_id` int(10) unsigned DEFAULT NULL,
`post_date` date NOT NULL,
`post_count` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `IDX_E3AC20CA4CE1C902` (`monitor_id`),
CONSTRAINT `FK_E3AC20CA4CE1C902` FOREIGN KEY (`monitor_id`) REFERENCES `monitoring` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `monitor_post_count`
--
LOCK TABLES `monitor_post_count` WRITE;
/*!40000 ALTER TABLE `monitor_post_count` DISABLE KEYS */;
/*!40000 ALTER TABLE `monitor_post_count` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `monitoring`
--
DROP TABLE IF EXISTS `monitoring`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `monitoring` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`title` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`lists` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`network_type` varchar(191) DEFAULT NULL,
`revision` int(11) NOT NULL,
`stats` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`properties` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`uuid` char(36) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `IDX_BA4F975D12469DE2` (`category_id`),
CONSTRAINT `FK_BA4F975D12469DE2` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `monitoring`
--
LOCK TABLES `monitoring` WRITE;
/*!40000 ALTER TABLE `monitoring` DISABLE KEYS */;
/*!40000 ALTER TABLE `monitoring` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `monitoring_leads`
--
DROP TABLE IF EXISTS `monitoring_leads`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `monitoring_leads` (
`monitor_id` int(10) unsigned NOT NULL,
`lead_id` bigint(20) unsigned NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`monitor_id`,`lead_id`),
KEY `IDX_45207A4A55458D` (`lead_id`),
CONSTRAINT `FK_45207A4A4CE1C902` FOREIGN KEY (`monitor_id`) REFERENCES `monitoring` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_45207A4A55458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `monitoring_leads`
--
LOCK TABLES `monitoring_leads` WRITE;
/*!40000 ALTER TABLE `monitoring_leads` DISABLE KEYS */;
/*!40000 ALTER TABLE `monitoring_leads` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `notifications`
--
DROP TABLE IF EXISTS `notifications`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `notifications` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned NOT NULL,
`type` varchar(25) DEFAULT NULL,
`header` varchar(512) DEFAULT NULL,
`message` longtext NOT NULL,
`date_added` datetime NOT NULL,
`icon_class` varchar(191) DEFAULT NULL,
`is_read` tinyint(1) NOT NULL,
`deduplicate` varchar(32) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `IDX_6000B0D3A76ED395` (`user_id`),
KEY `notification_read_status` (`is_read`),
KEY `notification_type` (`type`),
KEY `notification_user_read_status` (`is_read`,`user_id`),
KEY `deduplicate_date_added` (`deduplicate`,`date_added`),
CONSTRAINT `FK_6000B0D3A76ED395` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `notifications`
--
LOCK TABLES `notifications` WRITE;
/*!40000 ALTER TABLE `notifications` DISABLE KEYS */;
/*!40000 ALTER TABLE `notifications` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oauth2_accesstokens`
--
DROP TABLE IF EXISTS `oauth2_accesstokens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oauth2_accesstokens` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`client_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned DEFAULT NULL,
`token` varchar(191) NOT NULL,
`expires_at` bigint(20) DEFAULT NULL,
`scope` varchar(191) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_3A18CA5A5F37A13B` (`token`),
KEY `IDX_3A18CA5A19EB6921` (`client_id`),
KEY `IDX_3A18CA5AA76ED395` (`user_id`),
KEY `oauth2_access_token_search` (`token`),
CONSTRAINT `FK_3A18CA5A19EB6921` FOREIGN KEY (`client_id`) REFERENCES `oauth2_clients` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_3A18CA5AA76ED395` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oauth2_accesstokens`
--
LOCK TABLES `oauth2_accesstokens` WRITE;
/*!40000 ALTER TABLE `oauth2_accesstokens` DISABLE KEYS */;
INSERT INTO `oauth2_accesstokens` VALUES
(1,1,1,'NTBlMTM0YzM2MWJkYzIxOWMxOTBhZWZiN2EyN2E5NmQ2NTVhOGQ0MmQ2Zjk4NGIyZDliZGZjY2Y2Zjg3NTc0MQ',1770043629,''),
(2,1,1,'YTM5OTFhYWNiMjRiNWU0YzBlMGZlNmFhNWFlZjViNzVjOTc1ZGUyODM4ZDNiNzA1NGZkYzE0NjEzOWI2ZjA3Nw',1770047651,''),
(3,1,1,'ZjUyYWY3OTJhYWJkZDM4MzAzMmM5MmZjMjc5YzIyOTRjNGFlZjUzNzM2MmFkNzZkZWJjODE0ZDMxYWZkNjAzMQ',1770112443,''),
(4,1,1,'Yzc2MzRjNTMyMWExOTkzZmMwOGViZDUyZDMyOTY0OTIxZGUwZDY4YzgxOWIzOWQ2ZjRlYzYwMTc2YTIyYWM5ZA',1770116045,''),
(5,1,1,'ZDM0ZjY5MTAzMzQ1YWVmYTI1NThiYTBmMTcwZTYxMzFlZTRkZjkwMmVlM2ZkODc3M2MzNGYyN2FmM2I3ODExZA',1770117290,''),
(6,1,1,'N2ZmYTc4NjViZTc1YjJjYWY2ZmU3NTBiZDFiY2ZlZjhmNWNkY2ViYjA0MDlmODQ5NjZlYWZmMzI5MWI5MjgwZA',1770158366,''),
(7,1,1,'YjE4OGQxNmRkNjE1OGI4ZWMyNzE5YmNhM2MyN2MzN2VkMmRlM2EyYTIwZTZkYTYxNWQzMmRmNzhjYjE3YWJjZA',1770198078,''),
(8,1,1,'MmRjNDk0ZWFlOWM4NzE3YzY1NzJiNzI0NjBhNjljZWJjODliMjg0ODEzNTNkYzY0YmI2MzIwNTQ1ODZiOWFjNw',1770202823,''),
(9,1,1,'YzdlZDAyYTYxZjA4MWEyMWJlNDZiZjIwYTk1NWU1MjM3ZjRiMmQwNTlmOTdiM2MwMGM1OTU4YjRiMWQ1NWM0Yg',1770204515,'');
/*!40000 ALTER TABLE `oauth2_accesstokens` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oauth2_authcodes`
--
DROP TABLE IF EXISTS `oauth2_authcodes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oauth2_authcodes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`client_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`token` varchar(191) NOT NULL,
`expires_at` bigint(20) DEFAULT NULL,
`scope` varchar(191) DEFAULT NULL,
`redirect_uri` longtext NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_D2B4847B5F37A13B` (`token`),
KEY `IDX_D2B4847B19EB6921` (`client_id`),
KEY `IDX_D2B4847BA76ED395` (`user_id`),
CONSTRAINT `FK_D2B4847B19EB6921` FOREIGN KEY (`client_id`) REFERENCES `oauth2_clients` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_D2B4847BA76ED395` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oauth2_authcodes`
--
LOCK TABLES `oauth2_authcodes` WRITE;
/*!40000 ALTER TABLE `oauth2_authcodes` DISABLE KEYS */;
INSERT INTO `oauth2_authcodes` VALUES
(2,1,1,'YjcwYmNmNmZkMDRiYWY5NGFlYzRhYzBiNDc5NTQ0MTIxNzQxMTUyM2NhYjY5NWU5MjE3NzZjNTdjMDQwMzI1Mw',1770113312,'','http://173.249.20.244:5678/rest/oauth2-credential/callback');
/*!40000 ALTER TABLE `oauth2_authcodes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oauth2_clients`
--
DROP TABLE IF EXISTS `oauth2_clients`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oauth2_clients` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`role_id` int(10) unsigned DEFAULT NULL,
`name` varchar(191) NOT NULL,
`random_id` varchar(191) NOT NULL,
`secret` varchar(191) NOT NULL,
`redirect_uris` longtext NOT NULL COMMENT '(DC2Type:array)',
`allowed_grant_types` longtext NOT NULL COMMENT '(DC2Type:array)',
PRIMARY KEY (`id`),
KEY `IDX_F9D02AE6D60322AC` (`role_id`),
KEY `client_id_search` (`random_id`),
CONSTRAINT `FK_F9D02AE6D60322AC` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oauth2_clients`
--
LOCK TABLES `oauth2_clients` WRITE;
/*!40000 ALTER TABLE `oauth2_clients` DISABLE KEYS */;
INSERT INTO `oauth2_clients` VALUES
(1,1,'n8n Integration','2121pxeqwh6sks080cogg0ck8gk04kogwwgkcssc0gskgsgskg','3jsdvcp63qas408gckswcss8c4osgo4s4sss0csww4wows4s8k','a:1:{i:0;s:58:\"http://173.249.20.244:5678/rest/oauth2-credential/callback\";}','a:3:{i:0;s:18:\"authorization_code\";i:1;s:13:\"refresh_token\";i:2;s:18:\"client_credentials\";}');
/*!40000 ALTER TABLE `oauth2_clients` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oauth2_refreshtokens`
--
DROP TABLE IF EXISTS `oauth2_refreshtokens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oauth2_refreshtokens` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`client_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`token` varchar(191) NOT NULL,
`expires_at` bigint(20) DEFAULT NULL,
`scope` varchar(191) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_328C5B1B5F37A13B` (`token`),
KEY `IDX_328C5B1B19EB6921` (`client_id`),
KEY `IDX_328C5B1BA76ED395` (`user_id`),
KEY `oauth2_refresh_token_search` (`token`),
CONSTRAINT `FK_328C5B1B19EB6921` FOREIGN KEY (`client_id`) REFERENCES `oauth2_clients` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_328C5B1BA76ED395` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oauth2_refreshtokens`
--
LOCK TABLES `oauth2_refreshtokens` WRITE;
/*!40000 ALTER TABLE `oauth2_refreshtokens` DISABLE KEYS */;
INSERT INTO `oauth2_refreshtokens` VALUES
(4,1,1,'ZjkxNzk4YjM2MDczYzVjZjRlMTMyNmU2YTcwNjdmYmM4Y2NlNWM4N2FlOWQxNDRiZmU5OGVmNmFmNDVlNTM1Ng',1771322045,''),
(8,1,1,'YzgyMjE4Njg2MmI1NzYyNWZmYzQ4YWFlNjM5M2MwNmQ5ZjkxOTUyYTA2YTQ1MzE3NmY0MmRhNDQyYTI5NTExNw',1771408823,''),
(9,1,1,'OWFjMjhlNTlmYjUzMWI4Zjg3ZGQxNWIxN2YxOGNhNzY5YjQwNTkwZTNjNmIwMjA2OGU0MjljNTYxMTdiYzNhYw',1771410515,'');
/*!40000 ALTER TABLE `oauth2_refreshtokens` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oauth2_user_client_xref`
--
DROP TABLE IF EXISTS `oauth2_user_client_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oauth2_user_client_xref` (
`client_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`client_id`,`user_id`),
KEY `IDX_1AE34413A76ED395` (`user_id`),
CONSTRAINT `FK_1AE3441319EB6921` FOREIGN KEY (`client_id`) REFERENCES `oauth2_clients` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_1AE34413A76ED395` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oauth2_user_client_xref`
--
LOCK TABLES `oauth2_user_client_xref` WRITE;
/*!40000 ALTER TABLE `oauth2_user_client_xref` DISABLE KEYS */;
INSERT INTO `oauth2_user_client_xref` VALUES
(1,1);
/*!40000 ALTER TABLE `oauth2_user_client_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `page_hits`
--
DROP TABLE IF EXISTS `page_hits`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `page_hits` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`page_id` int(10) unsigned DEFAULT NULL,
`redirect_id` bigint(20) unsigned DEFAULT NULL,
`email_id` int(10) unsigned DEFAULT NULL,
`lead_id` bigint(20) unsigned DEFAULT NULL,
`ip_id` int(10) unsigned DEFAULT NULL,
`device_id` bigint(20) unsigned DEFAULT NULL,
`date_hit` datetime NOT NULL,
`date_left` datetime DEFAULT NULL,
`country` varchar(191) DEFAULT NULL,
`region` varchar(191) DEFAULT NULL,
`city` varchar(191) DEFAULT NULL,
`isp` varchar(191) DEFAULT NULL,
`organization` varchar(191) DEFAULT NULL,
`code` int(11) NOT NULL,
`referer` longtext DEFAULT NULL,
`url` longtext DEFAULT NULL,
`url_title` varchar(191) DEFAULT NULL,
`user_agent` longtext DEFAULT NULL,
`remote_host` varchar(191) DEFAULT NULL,
`page_language` varchar(191) DEFAULT NULL,
`browser_languages` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`tracking_id` varchar(191) NOT NULL,
`source` varchar(191) DEFAULT NULL,
`source_id` int(11) DEFAULT NULL,
`query` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
PRIMARY KEY (`id`),
KEY `IDX_9D4B70F1C4663E4` (`page_id`),
KEY `IDX_9D4B70F1B42D874D` (`redirect_id`),
KEY `IDX_9D4B70F1A832C1C9` (`email_id`),
KEY `IDX_9D4B70F155458D` (`lead_id`),
KEY `IDX_9D4B70F1A03F5E9F` (`ip_id`),
KEY `IDX_9D4B70F194A4C7D4` (`device_id`),
KEY `page_hit_tracking_search` (`tracking_id`),
KEY `page_hit_code_search` (`code`),
KEY `page_hit_source_search` (`source`,`source_id`),
KEY `date_hit_left_index` (`date_hit`,`date_left`),
KEY `page_hit_url` (`url`(128)),
CONSTRAINT `FK_9D4B70F155458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_9D4B70F194A4C7D4` FOREIGN KEY (`device_id`) REFERENCES `lead_devices` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_9D4B70F1A03F5E9F` FOREIGN KEY (`ip_id`) REFERENCES `ip_addresses` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_9D4B70F1A832C1C9` FOREIGN KEY (`email_id`) REFERENCES `emails` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_9D4B70F1B42D874D` FOREIGN KEY (`redirect_id`) REFERENCES `page_redirects` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_9D4B70F1C4663E4` FOREIGN KEY (`page_id`) REFERENCES `pages` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `page_hits`
--
LOCK TABLES `page_hits` WRITE;
/*!40000 ALTER TABLE `page_hits` DISABLE KEYS */;
INSERT INTO `page_hits` VALUES
(1,NULL,NULL,NULL,1,1,1,'2026-02-02 04:18:35',NULL,'','','','','',404,NULL,'http://173.249.20.244:8081/jars',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36',NULL,NULL,'a:0:{}','4mgms4kdtanegkuojujv7pc',NULL,NULL,'a:1:{s:8:\"page_url\";s:31:\"http://173.249.20.244:8081/jars\";}'),
(2,NULL,NULL,NULL,2,1,2,'2026-02-02 04:26:36',NULL,'','','','','',404,NULL,'http://173.249.20.244:8081/service/extdirect',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36',NULL,NULL,'a:0:{}','q5yzo9ujgucbupqo54cgdmp',NULL,NULL,'a:6:{s:6:\"action\";s:16:\"coreui_Component\";s:4:\"data\";a:1:{i:0;a:5:{s:6:\"filter\";a:3:{i:0;a:2:{s:8:\"property\";s:14:\"repositoryName\";s:5:\"value\";s:1:\"*\";}i:1;a:2:{s:8:\"property\";s:10:\"expression\";s:5:\"value\";s:4:\"1==1\";}i:2;a:2:{s:8:\"property\";s:4:\"type\";s:5:\"value\";s:4:\"jexl\";}}s:5:\"limit\";s:2:\"50\";s:4:\"page\";s:1:\"1\";s:4:\"sort\";a:1:{i:0;a:2:{s:9:\"direction\";s:3:\"ASC\";s:8:\"property\";s:4:\"name\";}}s:5:\"start\";s:1:\"0\";}}s:6:\"method\";s:13:\"previewAssets\";s:3:\"tid\";s:2:\"18\";s:4:\"type\";s:3:\"rpc\";s:8:\"page_url\";s:44:\"http://173.249.20.244:8081/service/extdirect\";}'),
(3,NULL,NULL,NULL,3,2,3,'2026-02-02 05:25:49',NULL,'','','','','',404,NULL,'http://173.249.20.244:8081/wiki',NULL,'Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)',NULL,NULL,'a:0:{}','4tivic4o8b5n0wpl6fvpqtu',NULL,NULL,'a:1:{s:8:\"page_url\";s:31:\"http://173.249.20.244:8081/wiki\";}'),
(4,NULL,NULL,NULL,4,3,4,'2026-02-02 06:05:19',NULL,'','','','','',404,NULL,'http://httpbin.org/ip',NULL,'ProxyPool-Scanner/2.0',NULL,NULL,'a:0:{}','28zhv2rks84zyl58skz6dez',NULL,NULL,'a:1:{s:8:\"page_url\";s:21:\"http://httpbin.org/ip\";}'),
(5,NULL,NULL,NULL,5,4,5,'2026-02-02 07:02:24',NULL,'','','','','',404,NULL,'http://www.shadowserver.orgwww.shadowserver.org:443',NULL,'Mozilla/5.0 (Windows NT 6.1; rv:102.0) Gecko/20100101 Goanna/6.6 Firefox/102.0 PaleMoon/33.0.0',NULL,NULL,'a:0:{}','8ifwltof9oepv7vczyg2kqe',NULL,NULL,'a:1:{s:8:\"page_url\";s:51:\"http://www.shadowserver.orgwww.shadowserver.org:443\";}'),
(6,NULL,NULL,NULL,6,5,6,'2026-02-02 08:45:19',NULL,'','','','','',404,NULL,'http://173.249.20.244:8081/SDK/webLanguage',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46',NULL,NULL,'a:3:{i:0;s:5:\"en US\";i:1;s:8:\"en;q=0.9\";i:2;s:8:\"sv;q=0.8\";}','slzhcoaoozfcd3ndr0bjnv7',NULL,NULL,'a:1:{s:8:\"page_url\";s:42:\"http://173.249.20.244:8081/SDK/webLanguage\";}'),
(7,NULL,NULL,NULL,7,7,7,'2026-02-02 10:39:54',NULL,'','','','','',404,NULL,'http://173.249.20.244:8081/SDK/webLanguage',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46',NULL,NULL,'a:3:{i:0;s:5:\"en US\";i:1;s:8:\"en;q=0.9\";i:2;s:8:\"sv;q=0.8\";}','e1d1dccobisd48jq6ca1uec',NULL,NULL,'a:1:{s:8:\"page_url\";s:42:\"http://173.249.20.244:8081/SDK/webLanguage\";}'),
(8,NULL,NULL,NULL,8,8,8,'2026-02-02 10:41:24',NULL,'','','','','',404,NULL,'http://173.249.20.244/constants.py',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36',NULL,NULL,'a:0:{}','4y1krrgy10d4dwlhs8dyk67',NULL,NULL,'a:1:{s:8:\"page_url\";s:34:\"http://173.249.20.244/constants.py\";}'),
(9,NULL,NULL,NULL,10,8,9,'2026-02-02 16:11:43',NULL,'','','','','',404,NULL,'http://173.249.20.244/config.js',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36',NULL,NULL,'a:0:{}','b275qk5l8jyzz45reiegl0r',NULL,NULL,'a:1:{s:8:\"page_url\";s:31:\"http://173.249.20.244/config.js\";}'),
(10,NULL,NULL,NULL,11,9,10,'2026-02-02 19:09:41',NULL,'','','','','',404,NULL,'http://173.249.20.244:8081/.well-known/security.txt',NULL,'Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)',NULL,NULL,'a:0:{}','oxiz5cd3mvbxtrf0h0vicky',NULL,NULL,'a:1:{s:8:\"page_url\";s:51:\"http://173.249.20.244:8081/.well-known/security.txt\";}'),
(11,NULL,NULL,NULL,13,10,12,'2026-02-02 19:12:27',NULL,'','','','','',404,NULL,'http://vmi3024229.contaboserver.net:8081/nmaplowercheck1770059546',NULL,'Mozilla/5.0 (compatible; Nmap Scripting Engine; https://nmap.org/book/nse.html)',NULL,NULL,'a:0:{}','j4g6sbfxu4x918t9tk27im9',NULL,NULL,'a:1:{s:8:\"page_url\";s:65:\"http://vmi3024229.contaboserver.net:8081/nmaplowercheck1770059546\";}'),
(12,NULL,NULL,NULL,12,11,11,'2026-02-02 19:12:27',NULL,'','','','','',404,NULL,'http://vmi3024229.contaboserver.net:8081/sdk',NULL,'Mozilla/5.0 (compatible; Nmap Scripting Engine; https://nmap.org/book/nse.html)',NULL,NULL,'a:0:{}','73zfutszk73phj701gkrdnn',NULL,NULL,'a:1:{s:8:\"page_url\";s:44:\"http://vmi3024229.contaboserver.net:8081/sdk\";}'),
(13,NULL,NULL,NULL,14,10,13,'2026-02-02 19:12:27',NULL,'','','','','',404,NULL,'http://vmi3024229.contaboserver.net:8081/asofKlj',NULL,'Mozilla/5.0 (compatible; Nmap Scripting Engine; https://nmap.org/book/nse.html)',NULL,NULL,'a:0:{}','68phfku7yr5fph7psxi9gjk',NULL,NULL,'a:1:{s:8:\"page_url\";s:48:\"http://vmi3024229.contaboserver.net:8081/asofKlj\";}'),
(14,NULL,NULL,NULL,15,10,14,'2026-02-02 19:12:28',NULL,'','','','','',404,NULL,'http://vmi3024229.contaboserver.net:8081/HNAP1',NULL,'Mozilla/5.0 (compatible; Nmap Scripting Engine; https://nmap.org/book/nse.html)',NULL,NULL,'a:0:{}','qgn4opxnr8hjvlinhwzdea0',NULL,NULL,'a:1:{s:8:\"page_url\";s:46:\"http://vmi3024229.contaboserver.net:8081/HNAP1\";}'),
(15,NULL,NULL,NULL,16,10,15,'2026-02-02 19:12:28',NULL,'','','','','',404,NULL,'http://vmi3024229.contaboserver.net:8081/evox/about',NULL,'Mozilla/5.0 (compatible; Nmap Scripting Engine; https://nmap.org/book/nse.html)',NULL,NULL,'a:0:{}','nmniyxr1elfh6rf7r0sqltb',NULL,NULL,'a:1:{s:8:\"page_url\";s:51:\"http://vmi3024229.contaboserver.net:8081/evox/about\";}'),
(16,NULL,NULL,NULL,17,1,16,'2026-02-02 22:07:02',NULL,'','','','','',404,NULL,'http://173.249.20.244:8081/jars',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36',NULL,NULL,'a:0:{}','gbl8ot1txhsjv82050yjj3k',NULL,NULL,'a:1:{s:8:\"page_url\";s:31:\"http://173.249.20.244:8081/jars\";}'),
(17,NULL,NULL,NULL,18,12,17,'2026-02-03 02:55:56',NULL,'','','','','',404,NULL,'http://www.shadowserver.orgwww.shadowserver.org:443',NULL,'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/115.0',NULL,NULL,'a:0:{}','td003hxrqlo7yrv915do9vl',NULL,NULL,'a:1:{s:8:\"page_url\";s:51:\"http://www.shadowserver.orgwww.shadowserver.org:443\";}'),
(18,NULL,NULL,NULL,19,5,18,'2026-02-03 03:06:20',NULL,'','','','','',404,NULL,'http://173.249.20.244:8081/SDK/webLanguage',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46',NULL,NULL,'a:3:{i:0;s:5:\"en US\";i:1;s:8:\"en;q=0.9\";i:2;s:8:\"sv;q=0.8\";}','yfvtaaqetrrtb2wo1wfn30i',NULL,NULL,'a:1:{s:8:\"page_url\";s:42:\"http://173.249.20.244:8081/SDK/webLanguage\";}'),
(19,NULL,NULL,NULL,20,8,19,'2026-02-03 05:00:21',NULL,'','','','','',404,NULL,'http://173.249.20.244/.streamlit/secrets.toml',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36',NULL,NULL,'a:0:{}','u82dp1en03f6lct2k56l45o',NULL,NULL,'a:1:{s:8:\"page_url\";s:45:\"http://173.249.20.244/.streamlit/secrets.toml\";}'),
(20,NULL,NULL,NULL,21,1,20,'2026-02-03 05:52:17',NULL,'','','','','',404,NULL,'http://173.249.20.244:8081/jars',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36',NULL,NULL,'a:0:{}','e514kz1pe8xyg7887ft7eue',NULL,NULL,'a:1:{s:8:\"page_url\";s:31:\"http://173.249.20.244:8081/jars\";}'),
(21,NULL,NULL,NULL,22,8,21,'2026-02-03 08:00:26',NULL,'','','','','',404,NULL,'http://173.249.20.244/docker-compose.yml',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36',NULL,NULL,'a:0:{}','g8zfmetehddvsc3gfj6uf0n',NULL,NULL,'a:1:{s:8:\"page_url\";s:40:\"http://173.249.20.244/docker-compose.yml\";}'),
(22,NULL,NULL,NULL,23,7,22,'2026-02-03 08:43:15',NULL,'','','','','',404,NULL,'http://173.249.20.244:8081/SDK/webLanguage',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46',NULL,NULL,'a:3:{i:0;s:5:\"en US\";i:1;s:8:\"en;q=0.9\";i:2;s:8:\"sv;q=0.8\";}','cjznwfxqjnczaka38sezpv5',NULL,NULL,'a:1:{s:8:\"page_url\";s:42:\"http://173.249.20.244:8081/SDK/webLanguage\";}'),
(23,NULL,NULL,NULL,25,14,24,'2026-02-03 10:24:51',NULL,'','','','','',404,NULL,'http://173.249.20.244:8081/login',NULL,'Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)',NULL,NULL,'a:0:{}','pjqqwgacc9bl5okw97gyep8',NULL,NULL,'a:1:{s:8:\"page_url\";s:32:\"http://173.249.20.244:8081/login\";}'),
(24,NULL,NULL,NULL,26,5,25,'2026-02-03 13:34:52',NULL,'','','','','',404,NULL,'http://173.249.20.244:8081/SDK/webLanguage',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46',NULL,NULL,'a:3:{i:0;s:5:\"en US\";i:1;s:8:\"en;q=0.9\";i:2;s:8:\"sv;q=0.8\";}','cf9pd9b3gu1i62zy7uzirao',NULL,NULL,'a:1:{s:8:\"page_url\";s:42:\"http://173.249.20.244:8081/SDK/webLanguage\";}'),
(25,NULL,NULL,NULL,27,8,26,'2026-02-03 13:54:01',NULL,'','','','','',404,NULL,'http://173.249.20.244/.aider.conf.yml',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36',NULL,NULL,'a:0:{}','x50y7d2pnqda9k0mng8bjlh',NULL,NULL,'a:1:{s:8:\"page_url\";s:37:\"http://173.249.20.244/.aider.conf.yml\";}'),
(26,NULL,NULL,NULL,28,7,27,'2026-02-03 20:16:29',NULL,'','','','','',404,NULL,'http://173.249.20.244:8081/SDK/webLanguage',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46',NULL,NULL,'a:3:{i:0;s:5:\"en US\";i:1;s:8:\"en;q=0.9\";i:2;s:8:\"sv;q=0.8\";}','1aq6rbdp9sajct2ilf9wnrz',NULL,NULL,'a:1:{s:8:\"page_url\";s:42:\"http://173.249.20.244:8081/SDK/webLanguage\";}'),
(27,NULL,NULL,NULL,29,1,28,'2026-02-03 23:33:47',NULL,'','','','','',404,NULL,'http://173.249.20.244:8081/jars',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36',NULL,NULL,'a:0:{}','vvnudu8ms2cz75nac8okkmt',NULL,NULL,'a:1:{s:8:\"page_url\";s:31:\"http://173.249.20.244:8081/jars\";}'),
(28,NULL,NULL,NULL,30,15,29,'2026-02-04 05:13:19',NULL,'','','','','',404,NULL,'http://173.249.20.244:8081/login',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36',NULL,NULL,'a:0:{}','h3dm5yakb7wtms4bave2fgx',NULL,NULL,'a:1:{s:8:\"page_url\";s:32:\"http://173.249.20.244:8081/login\";}'),
(29,NULL,NULL,NULL,31,1,30,'2026-02-04 07:21:57',NULL,'','','','','',404,NULL,'http://173.249.20.244:8081/jars',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36',NULL,NULL,'a:0:{}','pxr27okyv8x7e0ulvt1mx1s',NULL,NULL,'a:1:{s:8:\"page_url\";s:31:\"http://173.249.20.244:8081/jars\";}'),
(30,NULL,NULL,NULL,32,7,31,'2026-02-04 08:16:41',NULL,'','','','','',404,NULL,'http://173.249.20.244:8081/SDK/webLanguage',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46',NULL,NULL,'a:3:{i:0;s:5:\"en US\";i:1;s:8:\"en;q=0.9\";i:2;s:8:\"sv;q=0.8\";}','5bnkuupkk4avcd2hif3zsfs',NULL,NULL,'a:1:{s:8:\"page_url\";s:42:\"http://173.249.20.244:8081/SDK/webLanguage\";}'),
(31,NULL,NULL,NULL,34,16,32,'2026-02-04 11:02:21',NULL,'','','','','',404,NULL,'http://173.249.20.244:8081/wiki',NULL,'Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)',NULL,NULL,'a:0:{}','lculyibi8mtaxaau76o99mj',NULL,NULL,'a:1:{s:8:\"page_url\";s:31:\"http://173.249.20.244:8081/wiki\";}');
/*!40000 ALTER TABLE `page_hits` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `page_projects_xref`
--
DROP TABLE IF EXISTS `page_projects_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `page_projects_xref` (
`page_id` int(10) unsigned NOT NULL,
`project_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`page_id`,`project_id`),
KEY `IDX_CB257C2D166D1F9C` (`project_id`),
CONSTRAINT `FK_CB257C2D166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_CB257C2DC4663E4` FOREIGN KEY (`page_id`) REFERENCES `pages` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `page_projects_xref`
--
LOCK TABLES `page_projects_xref` WRITE;
/*!40000 ALTER TABLE `page_projects_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `page_projects_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `page_redirects`
--
DROP TABLE IF EXISTS `page_redirects`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `page_redirects` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`redirect_id` varchar(25) NOT NULL,
`url` longtext NOT NULL,
`hits` int(11) NOT NULL,
`unique_hits` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `page_redirects`
--
LOCK TABLES `page_redirects` WRITE;
/*!40000 ALTER TABLE `page_redirects` DISABLE KEYS */;
/*!40000 ALTER TABLE `page_redirects` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `pages`
--
DROP TABLE IF EXISTS `pages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `pages` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`translation_parent_id` int(10) unsigned DEFAULT NULL,
`variant_parent_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`title` varchar(191) NOT NULL,
`alias` varchar(191) NOT NULL,
`template` varchar(191) DEFAULT NULL,
`custom_html` longtext DEFAULT NULL,
`content` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`hits` int(11) NOT NULL,
`unique_hits` int(11) NOT NULL,
`variant_hits` int(11) NOT NULL,
`revision` int(11) NOT NULL,
`meta_description` varchar(191) DEFAULT NULL,
`head_script` longtext DEFAULT NULL,
`footer_script` longtext DEFAULT NULL,
`redirect_type` varchar(100) DEFAULT NULL,
`redirect_url` varchar(2048) DEFAULT NULL,
`is_preference_center` tinyint(1) DEFAULT NULL,
`no_index` tinyint(1) DEFAULT NULL,
`public_preview` tinyint(1) DEFAULT NULL,
`lang` varchar(191) NOT NULL,
`variant_settings` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`variant_start_date` datetime DEFAULT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `IDX_2074E57512469DE2` (`category_id`),
KEY `IDX_2074E5759091A2FB` (`translation_parent_id`),
KEY `IDX_2074E57591861123` (`variant_parent_id`),
KEY `page_alias_search` (`alias`),
CONSTRAINT `FK_2074E57512469DE2` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_2074E5759091A2FB` FOREIGN KEY (`translation_parent_id`) REFERENCES `pages` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_2074E57591861123` FOREIGN KEY (`variant_parent_id`) REFERENCES `pages` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `pages`
--
LOCK TABLES `pages` WRITE;
/*!40000 ALTER TABLE `pages` DISABLE KEYS */;
/*!40000 ALTER TABLE `pages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `pages_draft`
--
DROP TABLE IF EXISTS `pages_draft`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `pages_draft` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`page_id` int(10) unsigned NOT NULL,
`html` longtext DEFAULT NULL,
`template` varchar(191) DEFAULT NULL,
`public_preview` tinyint(1) NOT NULL DEFAULT 1,
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_AB8FDFFEC4663E4` (`page_id`),
CONSTRAINT `FK_AB8FDFFEC4663E4` FOREIGN KEY (`page_id`) REFERENCES `pages` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `pages_draft`
--
LOCK TABLES `pages_draft` WRITE;
/*!40000 ALTER TABLE `pages_draft` DISABLE KEYS */;
/*!40000 ALTER TABLE `pages_draft` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `permissions`
--
DROP TABLE IF EXISTS `permissions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `permissions` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`role_id` int(10) unsigned NOT NULL,
`bundle` varchar(50) NOT NULL,
`name` varchar(50) NOT NULL,
`bitwise` int(11) NOT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
UNIQUE KEY `unique_perm` (`bundle`,`name`,`role_id`),
KEY `IDX_2DEDCC6FD60322AC` (`role_id`),
CONSTRAINT `FK_2DEDCC6FD60322AC` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `permissions`
--
LOCK TABLES `permissions` WRITE;
/*!40000 ALTER TABLE `permissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `permissions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `plugin_integration_settings`
--
DROP TABLE IF EXISTS `plugin_integration_settings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `plugin_integration_settings` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`plugin_id` int(10) unsigned DEFAULT NULL,
`name` varchar(191) NOT NULL,
`is_published` tinyint(1) NOT NULL,
`supported_features` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`api_keys` longtext NOT NULL COMMENT '(DC2Type:array)',
`feature_settings` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
PRIMARY KEY (`id`),
KEY `IDX_941A2CE0EC942BCF` (`plugin_id`),
CONSTRAINT `FK_941A2CE0EC942BCF` FOREIGN KEY (`plugin_id`) REFERENCES `plugins` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `plugin_integration_settings`
--
LOCK TABLES `plugin_integration_settings` WRITE;
/*!40000 ALTER TABLE `plugin_integration_settings` DISABLE KEYS */;
INSERT INTO `plugin_integration_settings` VALUES
(1,1,'GrapesJsBuilder',1,'a:0:{}','a:0:{}','a:0:{}'),
(2,NULL,'OneSignal',0,'a:4:{i:0;s:6:\"mobile\";i:1;s:20:\"landing_page_enabled\";i:2;s:28:\"welcome_notification_enabled\";i:3;s:21:\"tracking_page_enabled\";}','a:0:{}','a:0:{}'),
(3,NULL,'Twilio',0,'a:0:{}','a:0:{}','a:0:{}');
/*!40000 ALTER TABLE `plugin_integration_settings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `plugins`
--
DROP TABLE IF EXISTS `plugins`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `plugins` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`is_missing` tinyint(1) NOT NULL,
`bundle` varchar(50) NOT NULL,
`version` varchar(191) DEFAULT NULL,
`author` varchar(191) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unique_bundle` (`bundle`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `plugins`
--
LOCK TABLES `plugins` WRITE;
/*!40000 ALTER TABLE `plugins` DISABLE KEYS */;
INSERT INTO `plugins` VALUES
(1,'GrapesJS Builder','GrapesJS Builder with MJML support for Mautic',0,'GrapesJsBuilderBundle','1.0.0','Mautic Community');
/*!40000 ALTER TABLE `plugins` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `point_group_contact_score`
--
DROP TABLE IF EXISTS `point_group_contact_score`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `point_group_contact_score` (
`contact_id` bigint(20) unsigned NOT NULL,
`group_id` int(10) unsigned NOT NULL,
`score` int(11) NOT NULL,
PRIMARY KEY (`contact_id`,`group_id`),
KEY `IDX_9D85A703FE54D947` (`group_id`),
CONSTRAINT `FK_9D85A703E7A1254A` FOREIGN KEY (`contact_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_9D85A703FE54D947` FOREIGN KEY (`group_id`) REFERENCES `point_groups` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `point_group_contact_score`
--
LOCK TABLES `point_group_contact_score` WRITE;
/*!40000 ALTER TABLE `point_group_contact_score` DISABLE KEYS */;
/*!40000 ALTER TABLE `point_group_contact_score` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `point_groups`
--
DROP TABLE IF EXISTS `point_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `point_groups` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `point_groups`
--
LOCK TABLES `point_groups` WRITE;
/*!40000 ALTER TABLE `point_groups` DISABLE KEYS */;
/*!40000 ALTER TABLE `point_groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `point_lead_action_log`
--
DROP TABLE IF EXISTS `point_lead_action_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `point_lead_action_log` (
`point_id` int(10) unsigned NOT NULL,
`lead_id` bigint(20) unsigned NOT NULL,
`ip_id` int(10) unsigned DEFAULT NULL,
`date_fired` datetime NOT NULL,
PRIMARY KEY (`point_id`,`lead_id`),
KEY `IDX_6DF94A5655458D` (`lead_id`),
KEY `IDX_6DF94A56A03F5E9F` (`ip_id`),
CONSTRAINT `FK_6DF94A5655458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_6DF94A56A03F5E9F` FOREIGN KEY (`ip_id`) REFERENCES `ip_addresses` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_6DF94A56C028CEA2` FOREIGN KEY (`point_id`) REFERENCES `points` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `point_lead_action_log`
--
LOCK TABLES `point_lead_action_log` WRITE;
/*!40000 ALTER TABLE `point_lead_action_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `point_lead_action_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `point_lead_event_log`
--
DROP TABLE IF EXISTS `point_lead_event_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `point_lead_event_log` (
`event_id` int(10) unsigned NOT NULL,
`lead_id` bigint(20) unsigned NOT NULL,
`ip_id` int(10) unsigned DEFAULT NULL,
`date_fired` datetime NOT NULL,
PRIMARY KEY (`event_id`,`lead_id`),
KEY `IDX_C2A3BDBA55458D` (`lead_id`),
KEY `IDX_C2A3BDBAA03F5E9F` (`ip_id`),
CONSTRAINT `FK_C2A3BDBA55458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_C2A3BDBA71F7E88B` FOREIGN KEY (`event_id`) REFERENCES `point_trigger_events` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_C2A3BDBAA03F5E9F` FOREIGN KEY (`ip_id`) REFERENCES `ip_addresses` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `point_lead_event_log`
--
LOCK TABLES `point_lead_event_log` WRITE;
/*!40000 ALTER TABLE `point_lead_event_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `point_lead_event_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `point_projects_xref`
--
DROP TABLE IF EXISTS `point_projects_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `point_projects_xref` (
`point_id` int(10) unsigned NOT NULL,
`project_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`point_id`,`project_id`),
KEY `IDX_10D626AE166D1F9C` (`project_id`),
CONSTRAINT `FK_10D626AE166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_10D626AEC028CEA2` FOREIGN KEY (`point_id`) REFERENCES `points` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `point_projects_xref`
--
LOCK TABLES `point_projects_xref` WRITE;
/*!40000 ALTER TABLE `point_projects_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `point_projects_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `point_trigger_events`
--
DROP TABLE IF EXISTS `point_trigger_events`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `point_trigger_events` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`trigger_id` int(10) unsigned NOT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`type` varchar(50) NOT NULL,
`action_order` int(11) NOT NULL,
`properties` longtext NOT NULL COMMENT '(DC2Type:array)',
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `IDX_D5669585FDDDCD6` (`trigger_id`),
KEY `trigger_type_search` (`type`),
CONSTRAINT `FK_D5669585FDDDCD6` FOREIGN KEY (`trigger_id`) REFERENCES `point_triggers` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `point_trigger_events`
--
LOCK TABLES `point_trigger_events` WRITE;
/*!40000 ALTER TABLE `point_trigger_events` DISABLE KEYS */;
/*!40000 ALTER TABLE `point_trigger_events` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `point_trigger_projects_xref`
--
DROP TABLE IF EXISTS `point_trigger_projects_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `point_trigger_projects_xref` (
`point_trigger_id` int(10) unsigned NOT NULL,
`project_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`point_trigger_id`,`project_id`),
KEY `IDX_B89C954166D1F9C` (`project_id`),
CONSTRAINT `FK_B89C954166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_B89C95483A8FF7C` FOREIGN KEY (`point_trigger_id`) REFERENCES `point_triggers` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `point_trigger_projects_xref`
--
LOCK TABLES `point_trigger_projects_xref` WRITE;
/*!40000 ALTER TABLE `point_trigger_projects_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `point_trigger_projects_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `point_triggers`
--
DROP TABLE IF EXISTS `point_triggers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `point_triggers` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`group_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`points` int(11) NOT NULL,
`color` varchar(7) NOT NULL,
`trigger_existing_leads` tinyint(1) NOT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `IDX_9CABD32F12469DE2` (`category_id`),
KEY `IDX_9CABD32FFE54D947` (`group_id`),
CONSTRAINT `FK_9CABD32F12469DE2` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_9CABD32FFE54D947` FOREIGN KEY (`group_id`) REFERENCES `point_groups` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `point_triggers`
--
LOCK TABLES `point_triggers` WRITE;
/*!40000 ALTER TABLE `point_triggers` DISABLE KEYS */;
/*!40000 ALTER TABLE `point_triggers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `points`
--
DROP TABLE IF EXISTS `points`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `points` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`group_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`type` varchar(50) NOT NULL,
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`repeatable` tinyint(1) NOT NULL,
`delta` int(11) NOT NULL,
`properties` longtext NOT NULL COMMENT '(DC2Type:array)',
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `IDX_27BA8E2912469DE2` (`category_id`),
KEY `IDX_27BA8E29FE54D947` (`group_id`),
KEY `point_type_search` (`type`),
CONSTRAINT `FK_27BA8E2912469DE2` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_27BA8E29FE54D947` FOREIGN KEY (`group_id`) REFERENCES `point_groups` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `points`
--
LOCK TABLES `points` WRITE;
/*!40000 ALTER TABLE `points` DISABLE KEYS */;
/*!40000 ALTER TABLE `points` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `projects`
--
DROP TABLE IF EXISTS `projects`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `projects` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`properties` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT '(DC2Type:json)' CHECK (json_valid(`properties`)),
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `project_name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `projects`
--
LOCK TABLES `projects` WRITE;
/*!40000 ALTER TABLE `projects` DISABLE KEYS */;
/*!40000 ALTER TABLE `projects` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `push_ids`
--
DROP TABLE IF EXISTS `push_ids`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `push_ids` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`lead_id` bigint(20) unsigned DEFAULT NULL,
`push_id` varchar(191) NOT NULL,
`enabled` tinyint(1) NOT NULL,
`mobile` tinyint(1) NOT NULL,
PRIMARY KEY (`id`),
KEY `IDX_4F2393E855458D` (`lead_id`),
CONSTRAINT `FK_4F2393E855458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `push_ids`
--
LOCK TABLES `push_ids` WRITE;
/*!40000 ALTER TABLE `push_ids` DISABLE KEYS */;
/*!40000 ALTER TABLE `push_ids` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `push_notification_list_xref`
--
DROP TABLE IF EXISTS `push_notification_list_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `push_notification_list_xref` (
`notification_id` int(10) unsigned NOT NULL,
`leadlist_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`notification_id`,`leadlist_id`),
KEY `IDX_473919EFB9FC8874` (`leadlist_id`),
CONSTRAINT `FK_473919EFB9FC8874` FOREIGN KEY (`leadlist_id`) REFERENCES `lead_lists` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_473919EFEF1A9D84` FOREIGN KEY (`notification_id`) REFERENCES `push_notifications` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `push_notification_list_xref`
--
LOCK TABLES `push_notification_list_xref` WRITE;
/*!40000 ALTER TABLE `push_notification_list_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `push_notification_list_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `push_notification_stats`
--
DROP TABLE IF EXISTS `push_notification_stats`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `push_notification_stats` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`notification_id` int(10) unsigned DEFAULT NULL,
`lead_id` bigint(20) unsigned DEFAULT NULL,
`list_id` int(10) unsigned DEFAULT NULL,
`ip_id` int(10) unsigned DEFAULT NULL,
`date_sent` datetime NOT NULL,
`date_read` datetime DEFAULT NULL,
`is_clicked` tinyint(1) NOT NULL,
`date_clicked` datetime DEFAULT NULL,
`tracking_hash` varchar(191) DEFAULT NULL,
`retry_count` int(11) DEFAULT NULL,
`source` varchar(191) DEFAULT NULL,
`source_id` int(11) DEFAULT NULL,
`tokens` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`click_count` int(11) DEFAULT NULL,
`last_clicked` datetime DEFAULT NULL,
`click_details` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
PRIMARY KEY (`id`),
KEY `IDX_DE63695EEF1A9D84` (`notification_id`),
KEY `IDX_DE63695E55458D` (`lead_id`),
KEY `IDX_DE63695E3DAE168B` (`list_id`),
KEY `IDX_DE63695EA03F5E9F` (`ip_id`),
KEY `stat_notification_search` (`notification_id`,`lead_id`),
KEY `stat_notification_clicked_search` (`is_clicked`),
KEY `stat_notification_hash_search` (`tracking_hash`),
KEY `stat_notification_source_search` (`source`,`source_id`),
CONSTRAINT `FK_DE63695E3DAE168B` FOREIGN KEY (`list_id`) REFERENCES `lead_lists` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_DE63695E55458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_DE63695EA03F5E9F` FOREIGN KEY (`ip_id`) REFERENCES `ip_addresses` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_DE63695EEF1A9D84` FOREIGN KEY (`notification_id`) REFERENCES `push_notifications` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `push_notification_stats`
--
LOCK TABLES `push_notification_stats` WRITE;
/*!40000 ALTER TABLE `push_notification_stats` DISABLE KEYS */;
/*!40000 ALTER TABLE `push_notification_stats` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `push_notifications`
--
DROP TABLE IF EXISTS `push_notifications`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `push_notifications` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`translation_parent_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`url` longtext DEFAULT NULL,
`heading` longtext NOT NULL,
`message` longtext NOT NULL,
`button` longtext DEFAULT NULL,
`utm_tags` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`notification_type` longtext DEFAULT NULL,
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`read_count` int(11) NOT NULL,
`sent_count` int(11) NOT NULL,
`mobile` tinyint(1) NOT NULL,
`mobileSettings` longtext NOT NULL COMMENT '(DC2Type:array)',
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
`lang` varchar(191) NOT NULL,
PRIMARY KEY (`id`),
KEY `IDX_5B9B7E4F12469DE2` (`category_id`),
KEY `IDX_5B9B7E4F9091A2FB` (`translation_parent_id`),
CONSTRAINT `FK_5B9B7E4F12469DE2` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_5B9B7E4F9091A2FB` FOREIGN KEY (`translation_parent_id`) REFERENCES `push_notifications` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `push_notifications`
--
LOCK TABLES `push_notifications` WRITE;
/*!40000 ALTER TABLE `push_notifications` DISABLE KEYS */;
/*!40000 ALTER TABLE `push_notifications` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `reports`
--
DROP TABLE IF EXISTS `reports`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `reports` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`system` tinyint(1) NOT NULL,
`source` varchar(191) NOT NULL,
`columns` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`filters` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`table_order` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`graphs` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`group_by` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`aggregators` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`settings` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '(DC2Type:json)' CHECK (json_valid(`settings`)),
`is_scheduled` tinyint(1) NOT NULL,
`schedule_unit` varchar(191) DEFAULT NULL,
`to_address` varchar(191) DEFAULT NULL,
`schedule_day` varchar(191) DEFAULT NULL,
`schedule_month_frequency` varchar(191) DEFAULT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `reports`
--
LOCK TABLES `reports` WRITE;
/*!40000 ALTER TABLE `reports` DISABLE KEYS */;
INSERT INTO `reports` VALUES
(1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Visits published Pages',NULL,1,'page.hits','a:7:{i:0;s:11:\"ph.date_hit\";i:1;s:6:\"ph.url\";i:2;s:12:\"ph.url_title\";i:3;s:10:\"ph.referer\";i:4;s:12:\"i.ip_address\";i:5;s:7:\"ph.city\";i:6;s:10:\"ph.country\";}','a:2:{i:0;a:3:{s:6:\"column\";s:7:\"ph.code\";s:9:\"condition\";s:2:\"eq\";s:5:\"value\";s:3:\"200\";}i:1;a:3:{s:6:\"column\";s:14:\"p.is_published\";s:9:\"condition\";s:2:\"eq\";s:5:\"value\";s:1:\"1\";}}','a:1:{i:0;a:2:{s:6:\"column\";s:11:\"ph.date_hit\";s:9:\"direction\";s:3:\"ASC\";}}','a:8:{i:0;s:35:\"mautic.page.graph.line.time.on.site\";i:1;s:27:\"mautic.page.graph.line.hits\";i:2;s:38:\"mautic.page.graph.pie.new.vs.returning\";i:3;s:31:\"mautic.page.graph.pie.languages\";i:4;s:34:\"mautic.page.graph.pie.time.on.site\";i:5;s:27:\"mautic.page.table.referrers\";i:6;s:30:\"mautic.page.table.most.visited\";i:7;s:37:\"mautic.page.table.most.visited.unique\";}','a:0:{}','a:0:{}','[]',0,NULL,NULL,NULL,NULL,'b5a24d0f-347f-4c97-9659-10af1f6be897'),
(2,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Downloads of all Assets',NULL,1,'asset.downloads','a:7:{i:0;s:16:\"ad.date_download\";i:1;s:7:\"a.title\";i:2;s:12:\"i.ip_address\";i:3;s:11:\"l.firstname\";i:4;s:10:\"l.lastname\";i:5;s:7:\"l.email\";i:6;s:4:\"a.id\";}','a:1:{i:0;a:3:{s:6:\"column\";s:14:\"a.is_published\";s:9:\"condition\";s:2:\"eq\";s:5:\"value\";s:1:\"1\";}}','a:1:{i:0;a:2:{s:6:\"column\";s:16:\"ad.date_download\";s:9:\"direction\";s:3:\"ASC\";}}','a:4:{i:0;s:33:\"mautic.asset.graph.line.downloads\";i:1;s:31:\"mautic.asset.graph.pie.statuses\";i:2;s:34:\"mautic.asset.table.most.downloaded\";i:3;s:32:\"mautic.asset.table.top.referrers\";}','a:0:{}','a:0:{}','[]',0,NULL,NULL,NULL,NULL,'5032cd4b-cfc0-4532-bc4c-e16dde7fc2d7'),
(3,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Submissions of published Forms',NULL,1,'form.submissions','a:0:{}','a:1:{i:1;a:3:{s:6:\"column\";s:14:\"f.is_published\";s:9:\"condition\";s:2:\"eq\";s:5:\"value\";s:1:\"1\";}}','a:0:{}','a:3:{i:0;s:34:\"mautic.form.graph.line.submissions\";i:1;s:32:\"mautic.form.table.most.submitted\";i:2;s:31:\"mautic.form.table.top.referrers\";}','a:0:{}','a:0:{}','[]',0,NULL,NULL,NULL,NULL,'8e932b74-78da-4c3c-9cf1-b9dd9cd78db4'),
(4,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'All Emails',NULL,1,'email.stats','a:5:{i:0;s:12:\"es.date_sent\";i:1;s:12:\"es.date_read\";i:2;s:9:\"e.subject\";i:3;s:16:\"es.email_address\";i:4;s:4:\"e.id\";}','a:1:{i:0;a:3:{s:6:\"column\";s:14:\"e.is_published\";s:9:\"condition\";s:2:\"eq\";s:5:\"value\";s:1:\"1\";}}','a:1:{i:0;a:2:{s:6:\"column\";s:12:\"es.date_sent\";s:9:\"direction\";s:3:\"ASC\";}}','a:6:{i:0;s:29:\"mautic.email.graph.line.stats\";i:1;s:42:\"mautic.email.graph.pie.ignored.read.failed\";i:2;s:35:\"mautic.email.table.most.emails.read\";i:3;s:35:\"mautic.email.table.most.emails.sent\";i:4;s:43:\"mautic.email.table.most.emails.read.percent\";i:5;s:37:\"mautic.email.table.most.emails.failed\";}','a:0:{}','a:0:{}','[]',0,NULL,NULL,NULL,NULL,'b0685b5e-4b44-4062-85fd-e15a1b05ffe4'),
(5,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Leads and Points',NULL,1,'lead.pointlog','a:7:{i:0;s:13:\"lp.date_added\";i:1;s:7:\"lp.type\";i:2;s:13:\"lp.event_name\";i:3;s:11:\"l.firstname\";i:4;s:10:\"l.lastname\";i:5;s:7:\"l.email\";i:6;s:8:\"lp.delta\";}','a:0:{}','a:1:{i:0;a:2:{s:6:\"column\";s:13:\"lp.date_added\";s:9:\"direction\";s:3:\"ASC\";}}','a:6:{i:0;s:29:\"mautic.lead.graph.line.points\";i:1;s:29:\"mautic.lead.table.most.points\";i:2;s:29:\"mautic.lead.table.top.actions\";i:3;s:28:\"mautic.lead.table.top.cities\";i:4;s:31:\"mautic.lead.table.top.countries\";i:5;s:28:\"mautic.lead.table.top.events\";}','a:0:{}','a:0:{}','[]',0,NULL,NULL,NULL,NULL,'d632b2c8-880d-4ccd-b5f4-be40d2b81c74');
/*!40000 ALTER TABLE `reports` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `reports_schedulers`
--
DROP TABLE IF EXISTS `reports_schedulers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `reports_schedulers` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`report_id` int(10) unsigned NOT NULL,
`schedule_date` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `IDX_C74CA6B84BD2A4C0` (`report_id`),
CONSTRAINT `FK_C74CA6B84BD2A4C0` FOREIGN KEY (`report_id`) REFERENCES `reports` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `reports_schedulers`
--
LOCK TABLES `reports_schedulers` WRITE;
/*!40000 ALTER TABLE `reports_schedulers` DISABLE KEYS */;
/*!40000 ALTER TABLE `reports_schedulers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `roles`
--
DROP TABLE IF EXISTS `roles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `roles` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`is_admin` tinyint(1) NOT NULL,
`readable_permissions` longtext NOT NULL COMMENT '(DC2Type:array)',
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `roles`
--
LOCK TABLES `roles` WRITE;
/*!40000 ALTER TABLE `roles` DISABLE KEYS */;
INSERT INTO `roles` VALUES
(1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Administrator','Full system access',1,'N;','7c05f241-7603-4a1b-8856-bca64a03657b');
/*!40000 ALTER TABLE `roles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `saml_id_entry`
--
DROP TABLE IF EXISTS `saml_id_entry`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `saml_id_entry` (
`id` varchar(191) NOT NULL,
`entity_id` varchar(191) NOT NULL,
`expiryTimestamp` int(11) NOT NULL,
PRIMARY KEY (`id`,`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `saml_id_entry`
--
LOCK TABLES `saml_id_entry` WRITE;
/*!40000 ALTER TABLE `saml_id_entry` DISABLE KEYS */;
/*!40000 ALTER TABLE `saml_id_entry` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sms_message_list_xref`
--
DROP TABLE IF EXISTS `sms_message_list_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `sms_message_list_xref` (
`sms_id` int(10) unsigned NOT NULL,
`leadlist_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`sms_id`,`leadlist_id`),
KEY `IDX_B032FC2EB9FC8874` (`leadlist_id`),
CONSTRAINT `FK_B032FC2EB9FC8874` FOREIGN KEY (`leadlist_id`) REFERENCES `lead_lists` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_B032FC2EBD5C7E60` FOREIGN KEY (`sms_id`) REFERENCES `sms_messages` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sms_message_list_xref`
--
LOCK TABLES `sms_message_list_xref` WRITE;
/*!40000 ALTER TABLE `sms_message_list_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `sms_message_list_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sms_message_stats`
--
DROP TABLE IF EXISTS `sms_message_stats`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `sms_message_stats` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`sms_id` int(10) unsigned DEFAULT NULL,
`lead_id` bigint(20) unsigned DEFAULT NULL,
`list_id` int(10) unsigned DEFAULT NULL,
`ip_id` int(10) unsigned DEFAULT NULL,
`date_sent` datetime NOT NULL,
`is_failed` tinyint(1) DEFAULT NULL,
`tracking_hash` varchar(191) DEFAULT NULL,
`source` varchar(191) DEFAULT NULL,
`source_id` int(11) DEFAULT NULL,
`tokens` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`details` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT '(DC2Type:json)' CHECK (json_valid(`details`)),
PRIMARY KEY (`id`),
KEY `IDX_FE1BAE9BD5C7E60` (`sms_id`),
KEY `IDX_FE1BAE955458D` (`lead_id`),
KEY `IDX_FE1BAE93DAE168B` (`list_id`),
KEY `IDX_FE1BAE9A03F5E9F` (`ip_id`),
KEY `stat_sms_search` (`sms_id`,`lead_id`),
KEY `stat_sms_hash_search` (`tracking_hash`),
KEY `stat_sms_source_search` (`source`,`source_id`),
KEY `stat_sms_failed_search` (`is_failed`),
CONSTRAINT `FK_FE1BAE93DAE168B` FOREIGN KEY (`list_id`) REFERENCES `lead_lists` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_FE1BAE955458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_FE1BAE9A03F5E9F` FOREIGN KEY (`ip_id`) REFERENCES `ip_addresses` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_FE1BAE9BD5C7E60` FOREIGN KEY (`sms_id`) REFERENCES `sms_messages` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sms_message_stats`
--
LOCK TABLES `sms_message_stats` WRITE;
/*!40000 ALTER TABLE `sms_message_stats` DISABLE KEYS */;
/*!40000 ALTER TABLE `sms_message_stats` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sms_messages`
--
DROP TABLE IF EXISTS `sms_messages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `sms_messages` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`translation_parent_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`message` longtext NOT NULL,
`sms_type` longtext DEFAULT NULL,
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`sent_count` int(11) NOT NULL,
`lang` varchar(191) NOT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `IDX_BDF43F9712469DE2` (`category_id`),
KEY `IDX_BDF43F979091A2FB` (`translation_parent_id`),
CONSTRAINT `FK_BDF43F9712469DE2` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_BDF43F979091A2FB` FOREIGN KEY (`translation_parent_id`) REFERENCES `sms_messages` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sms_messages`
--
LOCK TABLES `sms_messages` WRITE;
/*!40000 ALTER TABLE `sms_messages` DISABLE KEYS */;
/*!40000 ALTER TABLE `sms_messages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sms_projects_xref`
--
DROP TABLE IF EXISTS `sms_projects_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `sms_projects_xref` (
`sms_id` int(10) unsigned NOT NULL,
`project_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`sms_id`,`project_id`),
KEY `IDX_FDFF2EBE166D1F9C` (`project_id`),
CONSTRAINT `FK_FDFF2EBE166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_FDFF2EBEBD5C7E60` FOREIGN KEY (`sms_id`) REFERENCES `sms_messages` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sms_projects_xref`
--
LOCK TABLES `sms_projects_xref` WRITE;
/*!40000 ALTER TABLE `sms_projects_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `sms_projects_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `stage_lead_action_log`
--
DROP TABLE IF EXISTS `stage_lead_action_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `stage_lead_action_log` (
`stage_id` int(10) unsigned NOT NULL,
`lead_id` bigint(20) unsigned NOT NULL,
`ip_id` int(10) unsigned DEFAULT NULL,
`date_fired` datetime NOT NULL,
PRIMARY KEY (`stage_id`,`lead_id`),
KEY `IDX_A506AFBE55458D` (`lead_id`),
KEY `IDX_A506AFBEA03F5E9F` (`ip_id`),
CONSTRAINT `FK_A506AFBE2298D193` FOREIGN KEY (`stage_id`) REFERENCES `stages` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_A506AFBE55458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_A506AFBEA03F5E9F` FOREIGN KEY (`ip_id`) REFERENCES `ip_addresses` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `stage_lead_action_log`
--
LOCK TABLES `stage_lead_action_log` WRITE;
/*!40000 ALTER TABLE `stage_lead_action_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `stage_lead_action_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `stage_projects_xref`
--
DROP TABLE IF EXISTS `stage_projects_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `stage_projects_xref` (
`stage_id` int(10) unsigned NOT NULL,
`project_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`stage_id`,`project_id`),
KEY `IDX_A6068A96166D1F9C` (`project_id`),
CONSTRAINT `FK_A6068A96166D1F9C` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_A6068A962298D193` FOREIGN KEY (`stage_id`) REFERENCES `stages` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `stage_projects_xref`
--
LOCK TABLES `stage_projects_xref` WRITE;
/*!40000 ALTER TABLE `stage_projects_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `stage_projects_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `stages`
--
DROP TABLE IF EXISTS `stages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `stages` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`weight` int(11) NOT NULL,
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`uuid` char(36) DEFAULT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
KEY `IDX_2FA26A6412469DE2` (`category_id`),
CONSTRAINT `FK_2FA26A6412469DE2` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `stages`
--
LOCK TABLES `stages` WRITE;
/*!40000 ALTER TABLE `stages` DISABLE KEYS */;
/*!40000 ALTER TABLE `stages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sync_object_field_change_report`
--
DROP TABLE IF EXISTS `sync_object_field_change_report`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `sync_object_field_change_report` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`integration` varchar(191) NOT NULL,
`object_id` bigint(20) unsigned NOT NULL,
`object_type` varchar(191) NOT NULL,
`modified_at` datetime NOT NULL,
`column_name` varchar(191) NOT NULL,
`column_type` varchar(191) NOT NULL,
`column_value` longtext NOT NULL,
PRIMARY KEY (`id`),
KEY `object_composite_key` (`object_type`,`object_id`,`column_name`),
KEY `integration_object_composite_key` (`integration`,`object_type`,`object_id`,`column_name`),
KEY `integration_object_type_modification_composite_key` (`integration`,`object_type`,`modified_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sync_object_field_change_report`
--
LOCK TABLES `sync_object_field_change_report` WRITE;
/*!40000 ALTER TABLE `sync_object_field_change_report` DISABLE KEYS */;
/*!40000 ALTER TABLE `sync_object_field_change_report` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sync_object_mapping`
--
DROP TABLE IF EXISTS `sync_object_mapping`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `sync_object_mapping` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`date_created` datetime NOT NULL,
`integration` varchar(191) NOT NULL,
`internal_object_name` varchar(191) NOT NULL,
`internal_object_id` bigint(20) unsigned NOT NULL,
`integration_object_name` varchar(191) NOT NULL,
`integration_object_id` varchar(191) NOT NULL,
`last_sync_date` datetime NOT NULL,
`internal_storage` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT '(DC2Type:json)' CHECK (json_valid(`internal_storage`)),
`is_deleted` tinyint(1) NOT NULL,
`integration_reference_id` varchar(191) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `internal_object_id_idx` (`internal_object_id`),
KEY `integration_integration_object_name_last_sync_date` (`integration`,`internal_object_name`,`last_sync_date`),
KEY `integration_last_sync_date` (`integration`,`last_sync_date`),
KEY `integration_object` (`integration`,`integration_object_name`,`integration_object_id`,`integration_reference_id`),
KEY `integration_reference` (`integration`,`integration_object_name`,`integration_reference_id`,`integration_object_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sync_object_mapping`
--
LOCK TABLES `sync_object_mapping` WRITE;
/*!40000 ALTER TABLE `sync_object_mapping` DISABLE KEYS */;
/*!40000 ALTER TABLE `sync_object_mapping` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tweet_stats`
--
DROP TABLE IF EXISTS `tweet_stats`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tweet_stats` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`tweet_id` int(10) unsigned DEFAULT NULL,
`lead_id` bigint(20) unsigned DEFAULT NULL,
`twitter_tweet_id` varchar(191) DEFAULT NULL,
`handle` varchar(191) NOT NULL,
`date_sent` datetime DEFAULT NULL,
`is_failed` tinyint(1) DEFAULT NULL,
`retry_count` int(11) DEFAULT NULL,
`source` varchar(191) DEFAULT NULL,
`source_id` int(11) DEFAULT NULL,
`favorite_count` int(11) DEFAULT NULL,
`retweet_count` int(11) DEFAULT NULL,
`response_details` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '(DC2Type:json)' CHECK (json_valid(`response_details`)),
PRIMARY KEY (`id`),
KEY `IDX_CB8CBAE51041E39B` (`tweet_id`),
KEY `IDX_CB8CBAE555458D` (`lead_id`),
KEY `stat_tweet_search` (`tweet_id`,`lead_id`),
KEY `stat_tweet_search2` (`lead_id`,`tweet_id`),
KEY `stat_tweet_failed_search` (`is_failed`),
KEY `stat_tweet_source_search` (`source`,`source_id`),
KEY `favorite_count_index` (`favorite_count`),
KEY `retweet_count_index` (`retweet_count`),
KEY `tweet_date_sent` (`date_sent`),
KEY `twitter_tweet_id_index` (`twitter_tweet_id`),
CONSTRAINT `FK_CB8CBAE51041E39B` FOREIGN KEY (`tweet_id`) REFERENCES `tweets` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_CB8CBAE555458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tweet_stats`
--
LOCK TABLES `tweet_stats` WRITE;
/*!40000 ALTER TABLE `tweet_stats` DISABLE KEYS */;
/*!40000 ALTER TABLE `tweet_stats` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tweets`
--
DROP TABLE IF EXISTS `tweets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tweets` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`page_id` int(10) unsigned DEFAULT NULL,
`asset_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`media_id` varchar(191) DEFAULT NULL,
`media_path` varchar(191) DEFAULT NULL,
`text` varchar(191) NOT NULL,
`sent_count` int(11) DEFAULT NULL,
`favorite_count` int(11) DEFAULT NULL,
`retweet_count` int(11) DEFAULT NULL,
`lang` varchar(191) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `IDX_AA38402512469DE2` (`category_id`),
KEY `IDX_AA384025C4663E4` (`page_id`),
KEY `IDX_AA3840255DA1941` (`asset_id`),
KEY `sent_count_index` (`sent_count`),
KEY `favorite_count_index` (`favorite_count`),
KEY `retweet_count_index` (`retweet_count`),
CONSTRAINT `FK_AA38402512469DE2` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_AA3840255DA1941` FOREIGN KEY (`asset_id`) REFERENCES `assets` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_AA384025C4663E4` FOREIGN KEY (`page_id`) REFERENCES `pages` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tweets`
--
LOCK TABLES `tweets` WRITE;
/*!40000 ALTER TABLE `tweets` DISABLE KEYS */;
/*!40000 ALTER TABLE `tweets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `user_tokens`
--
DROP TABLE IF EXISTS `user_tokens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_tokens` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned NOT NULL,
`authorizator` varchar(32) NOT NULL,
`secret` varchar(120) NOT NULL,
`expiration` datetime DEFAULT NULL,
`one_time_only` tinyint(1) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_CF080AB35CA2E8E5` (`secret`),
KEY `IDX_CF080AB3A76ED395` (`user_id`),
CONSTRAINT `FK_CF080AB3A76ED395` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `user_tokens`
--
LOCK TABLES `user_tokens` WRITE;
/*!40000 ALTER TABLE `user_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `user_tokens` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `users` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`role_id` int(10) unsigned NOT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`username` varchar(191) NOT NULL,
`password` varchar(64) NOT NULL,
`first_name` varchar(191) NOT NULL,
`last_name` varchar(191) NOT NULL,
`email` varchar(191) NOT NULL,
`position` varchar(191) DEFAULT NULL,
`timezone` varchar(191) DEFAULT NULL,
`locale` varchar(191) DEFAULT NULL,
`last_login` datetime DEFAULT NULL,
`last_active` datetime DEFAULT NULL,
`preferences` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`signature` longtext DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_1483A5E9F85E0677` (`username`),
UNIQUE KEY `UNIQ_1483A5E9E7927C74` (`email`),
KEY `IDX_1483A5E9D60322AC` (`role_id`),
CONSTRAINT `FK_1483A5E9D60322AC` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `users`
--
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES
(1,1,1,NULL,NULL,NULL,'2026-02-02 15:00:05',1,'admin admin',NULL,NULL,NULL,'admin','$2y$13$wxuSc7J3k.PDH6inwy2/muIc/VO0uUjHCkoRVZ0PuYFTRLtSL//cG','admin','admin','ameniboukottaya@gmail.com',NULL,NULL,NULL,'2026-02-04 10:28:35','2026-02-04 10:28:35','a:5:{s:5:\"theme\";s:5:\"light\";s:19:\"reduce_transparency\";s:5:\"false\";s:13:\"reduce_motion\";s:5:\"false\";s:16:\"contrast_borders\";s:5:\"false\";s:17:\"enable_underlines\";s:5:\"false\";}','Best regards, |FROM_NAME|');
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `video_hits`
--
DROP TABLE IF EXISTS `video_hits`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `video_hits` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`lead_id` bigint(20) unsigned DEFAULT NULL,
`ip_id` int(10) unsigned DEFAULT NULL,
`date_hit` datetime NOT NULL,
`date_left` datetime DEFAULT NULL,
`country` varchar(191) DEFAULT NULL,
`region` varchar(191) DEFAULT NULL,
`city` varchar(191) DEFAULT NULL,
`isp` varchar(191) DEFAULT NULL,
`organization` varchar(191) DEFAULT NULL,
`code` int(11) NOT NULL,
`referer` longtext DEFAULT NULL,
`url` longtext DEFAULT NULL,
`user_agent` longtext DEFAULT NULL,
`remote_host` varchar(191) DEFAULT NULL,
`guid` varchar(191) NOT NULL,
`page_language` varchar(191) DEFAULT NULL,
`browser_languages` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
`channel` varchar(191) DEFAULT NULL,
`channel_id` int(11) DEFAULT NULL,
`time_watched` int(11) DEFAULT NULL,
`duration` int(11) DEFAULT NULL,
`query` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
PRIMARY KEY (`id`),
KEY `IDX_1D1831F755458D` (`lead_id`),
KEY `IDX_1D1831F7A03F5E9F` (`ip_id`),
KEY `video_date_hit` (`date_hit`),
KEY `video_channel_search` (`channel`,`channel_id`),
KEY `video_guid_lead_search` (`guid`,`lead_id`),
CONSTRAINT `FK_1D1831F755458D` FOREIGN KEY (`lead_id`) REFERENCES `leads` (`id`) ON DELETE SET NULL,
CONSTRAINT `FK_1D1831F7A03F5E9F` FOREIGN KEY (`ip_id`) REFERENCES `ip_addresses` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `video_hits`
--
LOCK TABLES `video_hits` WRITE;
/*!40000 ALTER TABLE `video_hits` DISABLE KEYS */;
/*!40000 ALTER TABLE `video_hits` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `webhook_events`
--
DROP TABLE IF EXISTS `webhook_events`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `webhook_events` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`webhook_id` int(10) unsigned NOT NULL,
`event_type` varchar(50) NOT NULL,
PRIMARY KEY (`id`),
KEY `IDX_7AD44E375C9BA60B` (`webhook_id`),
CONSTRAINT `FK_7AD44E375C9BA60B` FOREIGN KEY (`webhook_id`) REFERENCES `webhooks` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `webhook_events`
--
LOCK TABLES `webhook_events` WRITE;
/*!40000 ALTER TABLE `webhook_events` DISABLE KEYS */;
INSERT INTO `webhook_events` VALUES
(14,14,'mautic.email_on_open'),
(15,15,'mautic.email_on_open'),
(16,16,'mautic.email_on_open'),
(17,17,'mautic.email_on_open'),
(18,18,'mautic.email_on_open'),
(19,19,'mautic.email_on_open'),
(20,20,'mautic.email_on_send'),
(21,21,'mautic.email_on_send'),
(22,22,'mautic.email_on_send'),
(23,23,'mautic.email_on_send'),
(24,13,'mautic.email_on_send'),
(25,24,'mautic.email_on_send'),
(26,25,'mautic.email_on_send'),
(27,26,'mautic.email_on_send');
/*!40000 ALTER TABLE `webhook_events` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `webhook_logs`
--
DROP TABLE IF EXISTS `webhook_logs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `webhook_logs` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`webhook_id` int(10) unsigned NOT NULL,
`status_code` varchar(50) NOT NULL,
`date_added` datetime DEFAULT NULL,
`note` varchar(191) DEFAULT NULL,
`runtime` double DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `IDX_45A353475C9BA60B` (`webhook_id`),
KEY `webhook_id_date_added` (`webhook_id`,`date_added`),
CONSTRAINT `FK_45A353475C9BA60B` FOREIGN KEY (`webhook_id`) REFERENCES `webhooks` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `webhook_logs`
--
LOCK TABLES `webhook_logs` WRITE;
/*!40000 ALTER TABLE `webhook_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `webhook_logs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `webhook_queue`
--
DROP TABLE IF EXISTS `webhook_queue`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `webhook_queue` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`webhook_id` int(10) unsigned NOT NULL,
`event_id` int(10) unsigned NOT NULL,
`date_added` datetime DEFAULT NULL,
`date_modified` datetime DEFAULT NULL COMMENT '(DC2Type:datetime_immutable)',
`payload_compressed` mediumblob DEFAULT NULL,
`retries` smallint(5) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `IDX_F52D9A1A5C9BA60B` (`webhook_id`),
KEY `IDX_F52D9A1A71F7E88B` (`event_id`),
CONSTRAINT `FK_F52D9A1A5C9BA60B` FOREIGN KEY (`webhook_id`) REFERENCES `webhooks` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_F52D9A1A71F7E88B` FOREIGN KEY (`event_id`) REFERENCES `webhook_events` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `webhook_queue`
--
LOCK TABLES `webhook_queue` WRITE;
/*!40000 ALTER TABLE `webhook_queue` DISABLE KEYS */;
/*!40000 ALTER TABLE `webhook_queue` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `webhooks`
--
DROP TABLE IF EXISTS `webhooks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `webhooks` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`description` longtext DEFAULT NULL,
`webhook_url` longtext NOT NULL,
`secret` varchar(191) NOT NULL,
`events_orderby_dir` varchar(191) DEFAULT NULL,
`marked_unhealthy_at` datetime DEFAULT NULL COMMENT '(DC2Type:datetime_immutable)',
`unhealthy_since` datetime DEFAULT NULL COMMENT '(DC2Type:datetime_immutable)',
`last_notification_sent_at` datetime DEFAULT NULL COMMENT '(DC2Type:datetime_immutable)',
PRIMARY KEY (`id`),
KEY `IDX_998C4FDD12469DE2` (`category_id`),
CONSTRAINT `FK_998C4FDD12469DE2` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `webhooks`
--
LOCK TABLES `webhooks` WRITE;
/*!40000 ALTER TABLE `webhooks` DISABLE KEYS */;
INSERT INTO `webhooks` VALUES
(13,NULL,1,'2026-02-03 09:50:32',1,'admin admin','2026-02-03 09:50:32',1,'admin admin','2026-02-04 10:46:56',1,'admin admin','Email Open to n8n','test','http://173.249.20.244:5678/webhook/d5834178-e5d3-4489-b867-f2e3889396fd','f0f01cbf2481f243322cd3208af3bf0d28f95c5d364e598ab8b9d4e06a31e41f',NULL,NULL,NULL,NULL),
(14,NULL,1,'2026-02-03 09:52:17',1,'admin admin','2026-02-03 09:52:17',1,'admin admin','2026-02-04 10:27:17',1,'admin admin','n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook','n8n webhook','http://173.249.20.244:5678/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook','957705bd15d1bbe0633a9e4cda89302da6ffbfb85218e2d068c1e726cf571e29','ASC',NULL,NULL,NULL),
(15,NULL,1,'2026-02-03 09:54:05',1,'admin admin','2026-02-03 09:54:05',1,'admin admin',NULL,NULL,NULL,'n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook','n8n webhook','http://173.249.20.244:5678/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook','54edba4ebc583157553fa72c60dba8b6ed2daf848aac4ead5b17df06883a73e5','ASC',NULL,NULL,NULL),
(16,NULL,1,'2026-02-03 09:57:23',1,'admin admin','2026-02-03 09:57:23',1,'admin admin',NULL,NULL,NULL,'n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook','n8n webhook','http://173.249.20.244:5678/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook','038c1b901dfb230758bbea5db018a03303e4e522a75f0342b4b36c3664a8e29b','ASC',NULL,NULL,NULL),
(17,NULL,1,'2026-02-03 09:58:58',1,'admin admin','2026-02-03 09:58:58',1,'admin admin',NULL,NULL,NULL,'n8n-webhook:/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook','n8n webhook','http://173.249.20.244:5678/webhook-test/63a52b14-ca91-4996-9ac7-d35d57deed3a/webhook','879092839d610e74baa85bf88ecbdd0fcf03ba5fd591f9d77c65f5c682fe4121','ASC',NULL,NULL,NULL),
(18,NULL,1,'2026-02-03 10:48:43',1,'admin admin','2026-02-03 10:48:43',1,'admin admin',NULL,NULL,NULL,'n8n-webhook:/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook','n8n webhook','http://173.249.20.244:5678/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook','741350dcb86d9b2385cc9c16892767b474ecbf35dda003ad8ba823fa4a0b4518','ASC',NULL,NULL,NULL),
(19,NULL,1,'2026-02-03 10:51:33',1,'admin admin','2026-02-03 10:51:33',1,'admin admin',NULL,NULL,NULL,'n8n-webhook:/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook','n8n webhook','http://173.249.20.244:5678/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook','14e18d0e90cf9e8d243b065771fcda96dffdf9685425913bbe294920ff128a38','ASC',NULL,NULL,NULL),
(20,NULL,1,'2026-02-04 10:21:20',1,'admin admin','2026-02-04 10:21:20',1,'admin admin',NULL,NULL,NULL,'n8n-webhook:/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook','n8n webhook','http://173.249.20.244:5678/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook','68ad4b48fce1ef9174052621f10755d1f71b84014a38db96659986fbe5cd5a38','ASC',NULL,NULL,NULL),
(21,NULL,1,'2026-02-04 10:22:30',1,'admin admin','2026-02-04 10:22:30',1,'admin admin',NULL,NULL,NULL,'n8n-webhook:/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook','n8n webhook','http://173.249.20.244:5678/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook','5ee1877febf5550f7fa237003122c5975021f2cc7dbf4b2e27e9a037ca42757d','ASC',NULL,NULL,NULL),
(22,NULL,1,'2026-02-04 10:22:35',1,'admin admin','2026-02-04 10:22:35',1,'admin admin',NULL,NULL,NULL,'n8n-webhook:/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook','n8n webhook','http://173.249.20.244:5678/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook','57b4d252c70adcf02b11f778e431c6ef609b426bf1732cd9504816e6ebc7d0f7','ASC',NULL,NULL,NULL),
(23,NULL,1,'2026-02-04 10:23:08',1,'admin admin','2026-02-04 10:23:08',1,'admin admin',NULL,NULL,NULL,'n8n-webhook:/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook','n8n webhook','http://173.249.20.244:5678/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook','5f753a44bf0455b7c8bc1937a5f08a2bd8a9f71a76f53ccfa8967a153d17ff6d','ASC',NULL,NULL,NULL),
(24,NULL,1,'2026-02-04 10:24:48',1,'admin admin','2026-02-04 10:24:48',1,'admin admin',NULL,NULL,NULL,'n8n-webhook:/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook','n8n webhook','http://173.249.20.244:5678/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook','d5435bc7f249ced73af1d013da5609f165fefc763a740ca480d584fa82b842f9','ASC',NULL,NULL,NULL),
(25,NULL,1,'2026-02-04 10:25:42',1,'admin admin','2026-02-04 10:25:42',1,'admin admin',NULL,NULL,NULL,'n8n-webhook:/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook','n8n webhook','http://173.249.20.244:5678/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook','eb71890e66cc41fbb7178f361262b4804d55fe71b3e419974930eb3400469805','ASC',NULL,NULL,NULL),
(26,NULL,1,'2026-02-04 10:26:29',1,'admin admin','2026-02-04 10:26:29',1,'admin admin',NULL,NULL,NULL,'n8n-webhook:/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook','n8n webhook','http://173.249.20.244:5678/webhook-test/9c9fca76-713e-4398-a3b2-788865efcc74/webhook','f8ea25fbebf5474719f649b91a92cbe52379e0d2265187cae8d87152c8f7b823','ASC',NULL,NULL,NULL);
/*!40000 ALTER TABLE `webhooks` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `widgets`
--
DROP TABLE IF EXISTS `widgets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `widgets` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`is_published` tinyint(1) NOT NULL,
`date_added` datetime DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`created_by_user` varchar(191) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`modified_by_user` varchar(191) DEFAULT NULL,
`checked_out` datetime DEFAULT NULL,
`checked_out_by` int(11) DEFAULT NULL,
`checked_out_by_user` varchar(191) DEFAULT NULL,
`name` varchar(191) NOT NULL,
`type` varchar(191) NOT NULL,
`width` int(11) NOT NULL,
`height` int(11) NOT NULL,
`cache_timeout` int(11) DEFAULT NULL,
`ordering` int(11) DEFAULT NULL,
`params` longtext DEFAULT NULL COMMENT '(DC2Type:array)',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `widgets`
--
LOCK TABLES `widgets` WRITE;
/*!40000 ALTER TABLE `widgets` DISABLE KEYS */;
INSERT INTO `widgets` VALUES
(1,1,'2026-02-02 02:18:22',1,'admin admin','2026-02-02 02:18:22',1,'admin admin',NULL,NULL,NULL,'Contacts Created','created.leads.in.time',100,330,NULL,0,'a:1:{s:5:\"lists\";s:21:\"identifiedVsAnonymous\";}'),
(2,1,'2026-02-02 02:18:22',1,'admin admin','2026-02-02 02:18:22',1,'admin admin',NULL,NULL,NULL,'Page Visits','page.hits.in.time',50,330,NULL,1,'a:1:{s:4:\"flag\";s:6:\"unique\";}'),
(3,1,'2026-02-02 02:18:22',1,'admin admin','2026-02-02 02:18:22',1,'admin admin',NULL,NULL,NULL,'Form Submissions','submissions.in.time',50,330,NULL,2,'a:0:{}'),
(4,1,'2026-02-02 02:18:22',1,'admin admin','2026-02-02 02:18:22',1,'admin admin',NULL,NULL,NULL,'Recent Activity','recent.activity',50,330,NULL,3,'a:0:{}'),
(5,1,'2026-02-02 02:18:22',1,'admin admin','2026-02-02 02:18:22',1,'admin admin',NULL,NULL,NULL,'Upcoming Emails','upcoming.emails',50,330,NULL,4,'a:0:{}');
/*!40000 ALTER TABLE `widgets` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!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 */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2026-02-04 11:46:28