⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.23
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
crm.dev-unit.com
/
database
/
View File Name :
infy-crm.sql
-- phpMyAdmin SQL Dump -- version 5.2.0 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1:8889 -- Generation Time: Jan 12, 2023 at 04:21 AM -- Server version: 5.7.34 -- PHP Version: 8.1.13 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `crm` -- -- -------------------------------------------------------- -- -- Table structure for table `activity_log` -- CREATE TABLE `activity_log` ( `id` bigint(20) UNSIGNED NOT NULL, `log_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci NOT NULL, `subject_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `subject_id` bigint(20) UNSIGNED DEFAULT NULL, `causer_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `causer_id` bigint(20) UNSIGNED DEFAULT NULL, `properties` text COLLATE utf8mb4_unicode_ci, `batch_uuid` char(36) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `addresses` -- CREATE TABLE `addresses` ( `id` int(10) UNSIGNED NOT NULL, `owner_id` int(11) DEFAULT NULL, `owner_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `street` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `announcements` -- CREATE TABLE `announcements` ( `id` int(10) UNSIGNED NOT NULL, `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `date` datetime NOT NULL, `message` text COLLATE utf8mb4_unicode_ci, `show_to_clients` tinyint(1) DEFAULT '0', `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `articles` -- CREATE TABLE `articles` ( `id` int(10) UNSIGNED NOT NULL, `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `group_id` int(10) UNSIGNED NOT NULL, `internal_article` tinyint(1) DEFAULT NULL, `disabled` tinyint(1) DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci, `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `article_groups` -- CREATE TABLE `article_groups` ( `id` int(10) UNSIGNED NOT NULL, `group_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `color` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `order` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `comments` -- CREATE TABLE `comments` ( `id` int(10) UNSIGNED NOT NULL, `description` text COLLATE utf8mb4_unicode_ci NOT NULL, `owner_id` int(11) NOT NULL, `owner_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `added_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `contacts` -- CREATE TABLE `contacts` ( `id` int(10) UNSIGNED NOT NULL, `customer_id` int(10) UNSIGNED NOT NULL, `user_id` int(10) UNSIGNED DEFAULT NULL, `position` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `primary_contact` tinyint(1) NOT NULL DEFAULT '0', `send_welcome_email` tinyint(1) NOT NULL DEFAULT '0', `send_password_email` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `contact_email_notifications` -- CREATE TABLE `contact_email_notifications` ( `id` int(10) UNSIGNED NOT NULL, `contact_id` int(10) UNSIGNED NOT NULL, `email_notification_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `contracts` -- CREATE TABLE `contracts` ( `id` int(10) UNSIGNED NOT NULL, `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `start_date` datetime DEFAULT NULL, `end_date` datetime DEFAULT NULL, `contract_value` double DEFAULT NULL, `customer_id` int(10) UNSIGNED NOT NULL, `contract_type_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `contract_types` -- CREATE TABLE `contract_types` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `contract_types` -- INSERT INTO `contract_types` (`id`, `name`, `description`, `created_at`, `updated_at`) VALUES (1, 'Contract under Seal', NULL, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (2, 'Express Contracts', NULL, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (3, 'Implied Contracts', NULL, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (4, 'Executed and Executory Contracts', NULL, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (5, 'Bilateral and Unilateral Contracts', NULL, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (6, 'Unconscionable Contracts', NULL, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (7, 'Adhesion Contracts', NULL, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (8, 'Aleatory Contracts', NULL, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (9, 'Void and Voidable Contracts', NULL, '2023-01-11 22:50:13', '2023-01-11 22:50:13'); -- -------------------------------------------------------- -- -- Table structure for table `countries` -- CREATE TABLE `countries` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `countries` -- INSERT INTO `countries` (`id`, `name`, `created_at`, `updated_at`) VALUES (1, 'India', '2023-01-11 22:50:14', '2023-01-11 22:50:14'), (2, 'Canada', '2023-01-11 22:50:14', '2023-01-11 22:50:14'), (3, 'USA', '2023-01-11 22:50:14', '2023-01-11 22:50:14'), (4, 'Germany', '2023-01-11 22:50:14', '2023-01-11 22:50:14'), (5, 'Russia', '2023-01-11 22:50:14', '2023-01-11 22:50:14'), (6, 'England', '2023-01-11 22:50:14', '2023-01-11 22:50:14'), (7, 'UAE', '2023-01-11 22:50:14', '2023-01-11 22:50:14'), (8, 'China', '2023-01-11 22:50:14', '2023-01-11 22:50:14'), (9, 'Turkey', '2023-01-11 22:50:14', '2023-01-11 22:50:14'); -- -------------------------------------------------------- -- -- Table structure for table `credit_notes` -- CREATE TABLE `credit_notes` ( `id` int(10) UNSIGNED NOT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `customer_id` int(10) UNSIGNED NOT NULL, `credit_note_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `credit_note_date` datetime NOT NULL, `currency` int(11) NOT NULL, `discount_type` int(11) DEFAULT NULL, `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount` double DEFAULT NULL, `admin_text` text COLLATE utf8mb4_unicode_ci, `unit` int(11) NOT NULL, `client_note` text COLLATE utf8mb4_unicode_ci, `term_conditions` text COLLATE utf8mb4_unicode_ci, `sub_total` double DEFAULT NULL, `adjustment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `total_amount` double DEFAULT NULL, `payment_status` int(11) DEFAULT NULL, `discount_symbol` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `credit_note_addresses` -- CREATE TABLE `credit_note_addresses` ( `id` int(10) UNSIGNED NOT NULL, `credit_note_id` int(10) UNSIGNED NOT NULL, `type` int(11) NOT NULL, `street` text COLLATE utf8mb4_unicode_ci, `city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `customers` -- CREATE TABLE `customers` ( `id` int(10) UNSIGNED NOT NULL, `company_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `vat_number` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `website` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `currency` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `default_language` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `customer_groups` -- CREATE TABLE `customer_groups` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `customer_groups` -- INSERT INTO `customer_groups` (`id`, `name`, `description`, `created_at`, `updated_at`) VALUES (1, 'High Budget', 'This is High Budget', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (2, 'Wholesaler', 'This is Wholesaler', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (3, 'VIP', 'This is VIP', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (4, 'Low Budget', 'This is Low Budget', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (5, 'Wisoky-Robel', 'This is Wisoky-Robel', '2023-01-11 22:50:13', '2023-01-11 22:50:13'); -- -------------------------------------------------------- -- -- Table structure for table `customer_to_customer_groups` -- CREATE TABLE `customer_to_customer_groups` ( `id` int(10) UNSIGNED NOT NULL, `customer_id` int(10) UNSIGNED NOT NULL, `customer_group_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `departments` -- CREATE TABLE `departments` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `departments` -- INSERT INTO `departments` (`id`, `name`, `created_at`, `updated_at`) VALUES (1, 'Marketing Department', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (2, 'Operations Department', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (3, 'Finance Department', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (4, 'Sales Department', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (5, 'Human Resource Department', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (6, 'Purchase Department', '2023-01-11 22:50:13', '2023-01-11 22:50:13'); -- -------------------------------------------------------- -- -- Table structure for table `email_notifications` -- CREATE TABLE `email_notifications` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `email_templates` -- CREATE TABLE `email_templates` ( `id` int(10) UNSIGNED NOT NULL, `template_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `template_type` int(11) NOT NULL, `subject` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `from_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `send_plain_text` tinyint(1) NOT NULL DEFAULT '0', `disabled` tinyint(1) NOT NULL DEFAULT '0', `email_message` text COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `estimates` -- CREATE TABLE `estimates` ( `id` int(10) UNSIGNED NOT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `customer_id` int(10) UNSIGNED NOT NULL, `status` int(11) NOT NULL, `currency` int(11) NOT NULL, `estimate_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sales_agent_id` int(10) UNSIGNED DEFAULT NULL, `discount_type` int(11) DEFAULT NULL, `estimate_date` datetime NOT NULL, `estimate_expiry_date` datetime DEFAULT NULL, `admin_note` text COLLATE utf8mb4_unicode_ci, `discount` double DEFAULT NULL, `unit` int(11) NOT NULL, `sub_total` double DEFAULT NULL, `adjustment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `client_note` text COLLATE utf8mb4_unicode_ci, `term_conditions` text COLLATE utf8mb4_unicode_ci, `total_amount` double DEFAULT NULL, `discount_symbol` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `hsn_tax` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `estimate_addresses` -- CREATE TABLE `estimate_addresses` ( `id` int(10) UNSIGNED NOT NULL, `estimate_id` int(10) UNSIGNED NOT NULL, `type` int(11) NOT NULL, `street` text COLLATE utf8mb4_unicode_ci, `city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `expenses` -- CREATE TABLE `expenses` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `note` text COLLATE utf8mb4_unicode_ci, `expense_category_id` int(10) UNSIGNED NOT NULL, `expense_date` datetime NOT NULL, `amount` double NOT NULL, `customer_id` int(10) UNSIGNED DEFAULT NULL, `currency` int(11) NOT NULL, `tax_applied` tinyint(1) NOT NULL DEFAULT '0', `tax_1_id` int(10) UNSIGNED DEFAULT NULL, `tax_2_id` int(10) UNSIGNED DEFAULT NULL, `tax_rate` double DEFAULT NULL, `payment_mode_id` int(10) UNSIGNED DEFAULT NULL, `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `billable` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `expense_categories` -- CREATE TABLE `expense_categories` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `expense_categories` -- INSERT INTO `expense_categories` (`id`, `name`, `description`, `created_at`, `updated_at`) VALUES (1, 'Advertising', 'Advertising', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (2, 'Contractors', 'Contractors', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (3, 'Education and Training', 'Education and Training', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (4, 'Employee Benefits', 'Employee Benefits', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (5, 'Office Expenses & Postage', 'Office Expenses & Postage', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (6, 'Other Expenses', 'Other Expenses', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (7, 'Personal', 'Personal', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (8, 'Rent or Lease', 'Rent or Lease', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (9, 'Professional Services', 'Professional Services', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (10, 'Supplies', 'Supplies', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (11, 'Travel', 'Travel', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (12, 'Utilities', 'Utilities', '2023-01-11 22:50:13', '2023-01-11 22:50:13'); -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `uuid` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `goals` -- CREATE TABLE `goals` ( `id` int(10) UNSIGNED NOT NULL, `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `goal_type` int(11) NOT NULL, `start_date` datetime DEFAULT NULL, `end_date` datetime DEFAULT NULL, `achievement` double DEFAULT NULL, `is_notify` tinyint(1) DEFAULT NULL, `is_not_notify` tinyint(1) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `goal_members` -- CREATE TABLE `goal_members` ( `id` int(10) UNSIGNED NOT NULL, `user_id` int(10) UNSIGNED NOT NULL, `goal_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `goal_types` -- CREATE TABLE `goal_types` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `invoices` -- CREATE TABLE `invoices` ( `id` int(10) UNSIGNED NOT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `customer_id` int(10) UNSIGNED NOT NULL, `invoice_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `invoice_date` date NOT NULL, `due_date` date DEFAULT NULL, `sales_agent_id` int(10) UNSIGNED DEFAULT NULL, `currency` int(11) NOT NULL, `discount_type` int(11) DEFAULT NULL, `discount` double DEFAULT NULL, `admin_text` text COLLATE utf8mb4_unicode_ci, `unit` int(11) NOT NULL, `client_note` text COLLATE utf8mb4_unicode_ci, `term_conditions` text COLLATE utf8mb4_unicode_ci, `sub_total` double DEFAULT NULL, `adjustment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `total_amount` double DEFAULT NULL, `payment_status` int(11) DEFAULT NULL, `discount_symbol` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `hsn_tax` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `invoice_addresses` -- CREATE TABLE `invoice_addresses` ( `id` int(10) UNSIGNED NOT NULL, `invoice_id` int(10) UNSIGNED NOT NULL, `type` int(11) NOT NULL, `street` text COLLATE utf8mb4_unicode_ci, `city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `invoice_payment_modes` -- CREATE TABLE `invoice_payment_modes` ( `id` int(10) UNSIGNED NOT NULL, `payment_mode_id` int(10) UNSIGNED NOT NULL, `invoice_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `items` -- CREATE TABLE `items` ( `id` int(10) UNSIGNED NOT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `rate` double NOT NULL, `tax_1_id` int(11) DEFAULT NULL, `tax_2_id` int(11) DEFAULT NULL, `item_group_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `item_groups` -- CREATE TABLE `item_groups` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `item_groups` -- INSERT INTO `item_groups` (`id`, `name`, `description`, `created_at`, `updated_at`) VALUES (1, 'Consultant Services', 'Pain find that follow. I feel more than that, but that\'s dishonor, with a grief and a lot. It is extremely quite right that that.', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (2, 'LCD TV', 'Born to those who discovered it. Present suffering is nothing more than that. It is the pleasure of him who is willing, or.', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (3, 'MacBook Pro', 'The distinction, however, is easier, to the accepted indeed. Seeks to provide for them.', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (4, 'Marketing Services', 'Thus was born and will never interfere either. And to explain how he desires.', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (5, 'SEO Optimization', 'He who does not, therefore, the body itself in. Or they are rejecting it.', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (6, 'USB Stick', 'All but one reason. We regard any who are in a assumenda that he would consent. And it is because of it.', '2023-01-11 22:50:13', '2023-01-11 22:50:13'); -- -------------------------------------------------------- -- -- Table structure for table `languages` -- CREATE TABLE `languages` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `is_default` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `languages` -- INSERT INTO `languages` (`id`, `name`, `description`, `is_default`, `created_at`, `updated_at`) VALUES (1, 'en', 'English', 1, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (2, 'es', 'Spanish', 0, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (3, 'fr', 'French', 0, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (4, 'de', 'German', 0, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (5, 'ru', 'Russian', 0, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (6, 'pt', 'Portuguese', 0, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (7, 'ar', 'Arabic', 0, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (8, 'zh', 'Chinese', 0, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (9, 'tr', 'Turkish', 0, '2023-01-11 22:50:13', '2023-01-11 22:50:13'); -- -------------------------------------------------------- -- -- Table structure for table `leads` -- CREATE TABLE `leads` ( `id` int(10) UNSIGNED NOT NULL, `status_id` int(10) UNSIGNED NOT NULL, `source_id` int(10) UNSIGNED NOT NULL, `assign_to` int(10) UNSIGNED DEFAULT NULL, `company_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `position` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `website` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci, `estimate_budget` double DEFAULT NULL, `default_language` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `public` int(11) DEFAULT NULL, `lead_convert_customer` tinyint(1) NOT NULL DEFAULT '0', `lead_convert_date` date DEFAULT NULL, `contacted_today` int(11) DEFAULT NULL, `date_contacted` datetime DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `lead_sources` -- CREATE TABLE `lead_sources` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `lead_sources` -- INSERT INTO `lead_sources` (`id`, `name`, `created_at`, `updated_at`) VALUES (1, 'Google AdWords', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (2, 'Other Search Engines', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (3, 'Google (organic)', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (4, 'Social Media (Facebook, Twitter etc)', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (5, 'Cold Calling/Telemarketing', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (6, 'Advertising', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (7, 'Custom Referral', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (8, 'Expo/Seminar', '2023-01-11 22:50:13', '2023-01-11 22:50:13'); -- -------------------------------------------------------- -- -- Table structure for table `lead_statuses` -- CREATE TABLE `lead_statuses` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `lead_statuses` -- INSERT INTO `lead_statuses` (`id`, `name`, `color`, `order`, `created_at`, `updated_at`) VALUES (1, 'Attempted', '#ff2d42', 1, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (2, 'Not Attempted', '#84c529', 2, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (3, 'Contacted', '#0000ff', 3, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (4, 'New Opportunity', '#c0c0c0', 4, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (5, 'Additional Contact', '#03a9f4', 5, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (6, 'In Progress', '#9C27B0', 5, '2023-01-11 22:50:13', '2023-01-11 22:50:13'); -- -------------------------------------------------------- -- -- Table structure for table `media` -- CREATE TABLE `media` ( `id` bigint(20) UNSIGNED NOT NULL, `model_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `model_id` bigint(20) UNSIGNED NOT NULL, `collection_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `file_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `mime_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `disk` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `size` bigint(20) UNSIGNED NOT NULL, `manipulations` text COLLATE utf8mb4_unicode_ci NOT NULL, `custom_properties` text COLLATE utf8mb4_unicode_ci NOT NULL, `responsive_images` text COLLATE utf8mb4_unicode_ci NOT NULL, `order_column` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `conversions_disk` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `uuid` char(36) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `generated_conversions` text COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2019_05_03_000001_create_customer_columns', 1), (4, '2019_05_03_000002_create_subscriptions_table', 1), (5, '2019_05_03_000003_create_subscription_items_table', 1), (6, '2019_08_19_000000_create_failed_jobs_table', 1), (7, '2020_03_30_113645_create_languages_table', 1), (8, '2020_03_31_072201_create_tags_table', 1), (9, '2020_03_31_101748_create_customer_groups_table', 1), (10, '2020_04_02_120049_create_permission_tables', 1), (11, '2020_04_03_042555_create_article_groups_table', 1), (12, '2020_04_03_045459_create_predefined_replies_table', 1), (13, '2020_04_03_063710_create_customers_table', 1), (14, '2020_04_03_064745_create_address_table', 1), (15, '2020_04_03_080033_create_ticket_priorities_table', 1), (16, '2020_04_03_091117_create_expense_categories_table', 1), (17, '2020_04_03_113351_create_customer_to_customer_groups_table', 1), (18, '2020_04_03_123515_create_services_table', 1), (19, '2020_04_04_035019_create_ticket_statuses_table', 1), (20, '2020_04_06_040305_create_lead_statuses_table', 1), (21, '2020_04_06_054337_create_lead_sources_table', 1), (22, '2020_04_06_055647_create_item_groups_table', 1), (23, '2020_04_06_064803_create_tax_rates_table', 1), (24, '2020_04_06_065009_create_announcements_table', 1), (25, '2020_04_06_083033_create_articles_table', 1), (26, '2020_04_06_095554_create_payment_modes_table', 1), (27, '2020_04_07_042816_create_items_table', 1), (28, '2020_04_07_055247_create_contacts_table', 1), (29, '2020_04_08_042058_create_contract_types_table', 1), (30, '2020_04_08_060610_create_departments_table', 1), (31, '2020_04_08_061359_create_tickets_table', 1), (32, '2020_04_08_094756_add_type_column_into_permissions_table', 1), (33, '2020_04_08_113224_create_invoices_table', 1), (34, '2020_04_09_052358_create_invoice_addresses_table', 1), (35, '2020_04_09_084032_create_taggables_table', 1), (36, '2020_04_09_095706_create_invoice_payment_modes_table', 1), (37, '2020_04_09_114622_create_sales_items_table', 1), (38, '2020_04_10_043112_create_media_table', 1), (39, '2020_04_10_070725_create_email_notifications_table', 1), (40, '2020_04_10_103613_create_user_departments_table', 1), (41, '2020_04_14_063726_create_notes_table', 1), (42, '2020_04_14_065429_create_contact_email_notifications_table', 1), (43, '2020_04_15_092420_create_reminders_table', 1), (44, '2020_04_15_112744_create_sales_items_taxes_table', 1), (45, '2020_04_16_054536_create_projects_table', 1), (46, '2020_04_16_075039_create_sales_taxes_table', 1), (47, '2020_04_17_101231_create_project_members_table', 1), (48, '2020_04_20_051641_create_expenses_table', 1), (49, '2020_04_20_082756_create_comments_table', 1), (50, '2020_04_20_090457_add_goal_types_table', 1), (51, '2020_04_20_111756_add_goals_table', 1), (52, '2020_04_20_124358_create_leads_table', 1), (53, '2020_04_21_114258_add_contracts_table', 1), (54, '2020_04_22_082049_create_payments_table', 1), (55, '2020_04_22_085449_add_settings_table', 1), (56, '2020_04_23_060014_create_credit_notes_table', 1), (57, '2020_04_23_060243_create_credit_note_addresses_table', 1), (58, '2020_04_24_054022_create_email_templates_table', 1), (59, '2020_04_27_045332_create_proposals_table', 1), (60, '2020_04_27_061619_create_estimates_table', 1), (61, '2020_04_27_100038_create_estimate_addresses_table', 1), (62, '2020_04_28_122023_create_proposal_addresses_table', 1), (63, '2020_07_06_045925_add_new_fields_into_users_table', 1), (64, '2020_07_14_134831_create_tasks_table', 1), (65, '2020_07_31_095218_add_image_field_in_articles_table', 1), (66, '2020_08_24_052215_create_project_contacts_table', 1), (67, '2020_09_02_130829_create_goal_members_table', 1), (68, '2020_12_10_062217_add_status_field_to_announcements_table', 1), (69, '2020_12_10_114422_add_status_filed_to_reminders_table', 1), (70, '2020_12_19_061159_add_country_to_leads_table', 1), (71, '2020_12_25_074509_drop_predefine_relation_on_tickets_table', 1), (72, '2020_12_25_093030_drop_department_relation_on_tickets_table', 1), (73, '2020_12_25_111608_drop_foreign_key_to_invoices_table', 1), (74, '2020_12_25_111700_drop_foreign_key_to_estimates_table', 1), (75, '2020_12_26_045434_drop_member_id_foreign_key_on_tasks_table', 1), (76, '2021_01_04_090933_add_stripe_id_and_meta_fields_in_payments_table', 1), (77, '2021_01_19_124232_make_start_date_nullable_in_tasks_table', 1), (78, '2021_01_20_050318_make_priority_and_service_field_nullable_in_tickets_table', 1), (79, '2021_03_10_054614_create_activity_log_table', 1), (80, '2021_05_10_112220_create_notifications_table', 1), (81, '2021_07_05_121647_change_customer_foreign_key_table_name_in_expenses_table', 1), (82, '2021_07_22_082312_create_countries_table', 1), (83, '2021_09_03_000000_add_uuid_to_failed_jobs_table', 1), (84, '2021_09_11_113710_add_conversions_disk_column_in_media_table', 1), (85, '2022_04_27_062115_add_is_admin_field_in_users_table', 1), (86, '2022_05_24_073300_change_properties_field_type_in_activity_log_table', 1), (87, '2022_07_27_055736_add_hsn_tax_field_in_invoices_and_proposals_and_estimates', 1), (88, '2022_09_13_045308_run_default_country_code_seeder', 1), (89, '2022_09_13_124102_add_is_default_field_in_languages_table', 1), (90, '2022_09_19_055209_run_default_languages_seeder_table', 1), (91, '2022_10_06_124122_run_set_default_language_seeder', 1), (92, '2022_11_08_115827_run_ticket_permission_in_seeder', 1), (93, '2022_11_14_092357_create_ticket_replies_table', 1), (94, '2022_12_19_120935_add_batch_uuid_column_to_activity_log_table', 1); -- -------------------------------------------------------- -- -- Table structure for table `model_has_permissions` -- CREATE TABLE `model_has_permissions` ( `permission_id` bigint(20) UNSIGNED NOT NULL, `model_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `model_id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `model_has_permissions` -- INSERT INTO `model_has_permissions` (`permission_id`, `model_type`, `model_id`) VALUES (1, 'App\\Models\\User', 1), (2, 'App\\Models\\User', 1), (3, 'App\\Models\\User', 1), (4, 'App\\Models\\User', 1), (5, 'App\\Models\\User', 1), (6, 'App\\Models\\User', 1), (7, 'App\\Models\\User', 1), (8, 'App\\Models\\User', 1), (9, 'App\\Models\\User', 1), (10, 'App\\Models\\User', 1), (11, 'App\\Models\\User', 1), (12, 'App\\Models\\User', 1), (13, 'App\\Models\\User', 1), (14, 'App\\Models\\User', 1), (15, 'App\\Models\\User', 1), (16, 'App\\Models\\User', 1), (17, 'App\\Models\\User', 1), (18, 'App\\Models\\User', 1), (19, 'App\\Models\\User', 1), (20, 'App\\Models\\User', 1), (21, 'App\\Models\\User', 1), (22, 'App\\Models\\User', 1), (23, 'App\\Models\\User', 1), (24, 'App\\Models\\User', 1), (25, 'App\\Models\\User', 1), (26, 'App\\Models\\User', 1), (27, 'App\\Models\\User', 1), (28, 'App\\Models\\User', 1), (29, 'App\\Models\\User', 1), (30, 'App\\Models\\User', 1), (31, 'App\\Models\\User', 1), (32, 'App\\Models\\User', 1), (33, 'App\\Models\\User', 1), (34, 'App\\Models\\User', 1), (35, 'App\\Models\\User', 1), (36, 'App\\Models\\User', 1), (37, 'App\\Models\\User', 1), (38, 'App\\Models\\User', 1), (39, 'App\\Models\\User', 1), (40, 'App\\Models\\User', 1); -- -------------------------------------------------------- -- -- Table structure for table `model_has_roles` -- CREATE TABLE `model_has_roles` ( `role_id` bigint(20) UNSIGNED NOT NULL, `model_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `model_id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `model_has_roles` -- INSERT INTO `model_has_roles` (`role_id`, `model_type`, `model_id`) VALUES (1, 'App\\Models\\User', 1); -- -------------------------------------------------------- -- -- Table structure for table `notes` -- CREATE TABLE `notes` ( `id` int(10) UNSIGNED NOT NULL, `owner_id` int(11) NOT NULL, `owner_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `note` text COLLATE utf8mb4_unicode_ci, `added_by` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `notifications` -- CREATE TABLE `notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci, `read_at` timestamp NULL DEFAULT NULL, `user_id` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `payments` -- CREATE TABLE `payments` ( `id` int(10) UNSIGNED NOT NULL, `owner_id` int(11) NOT NULL, `owner_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `amount_received` double NOT NULL, `payment_date` datetime NOT NULL, `payment_mode` int(10) UNSIGNED NOT NULL, `transaction_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `note` text COLLATE utf8mb4_unicode_ci, `send_mail_to_customer_contacts` tinyint(1) DEFAULT NULL, `stripe_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `payment_modes` -- CREATE TABLE `payment_modes` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `active` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `payment_modes` -- INSERT INTO `payment_modes` (`id`, `name`, `description`, `active`, `created_at`, `updated_at`) VALUES (1, 'Bank', NULL, 1, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (2, 'Gold', NULL, 1, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (3, 'Stripe', NULL, 1, '2023-01-11 22:50:14', '2023-01-11 22:50:14'); -- -------------------------------------------------------- -- -- Table structure for table `permissions` -- CREATE TABLE `permissions` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `display_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `guard_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `permissions` -- INSERT INTO `permissions` (`id`, `name`, `display_name`, `description`, `type`, `guard_name`, `created_at`, `updated_at`) VALUES (1, 'contact_tickets', 'Contact Tickets', NULL, 'Contacts', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (2, 'manage_customer_groups', 'Manage Customer Groups', NULL, 'Customers', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (3, 'manage_customers', 'Manage Customers', NULL, 'Customers', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (4, 'manage_staff_member', 'Manage Staff Member', NULL, 'Members', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (5, 'manage_article_groups', 'Manage Article Groups', NULL, 'Articles', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (6, 'manage_articles', 'Manage Articles', NULL, 'Articles', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (7, 'manage_tags', 'Manage Tags', NULL, 'Tags', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (8, 'manage_leads', 'Manage Leads', NULL, 'Leads', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (9, 'manage_lead_status', 'Manage Lead Status', NULL, 'Leads', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (10, 'manage_tasks', 'Manage Tasks', NULL, 'Tasks', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (11, 'manage_ticket_priority', 'Manage Ticket Priority', NULL, 'Tickets', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (12, 'manage_ticket_statuses', 'Manage Ticket Statuses', NULL, 'Tickets', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (13, 'manage_tickets', 'Manage Tickets', NULL, 'Tickets', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (14, 'manage_invoices', 'Manage Invoices', NULL, 'Invoices', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (15, 'manage_payments', 'Manage Payments', NULL, 'Payments', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (16, 'manage_payment_mode', 'Manage Payment Mode', NULL, 'Payments', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (17, 'manage_credit_notes', 'Manage Credit Note', NULL, 'Credit Note', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (18, 'manage_proposals', 'Manage Proposals', NULL, 'Proposals', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (19, 'manage_estimates', 'Manage Estimates', NULL, 'Estimates', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (20, 'manage_departments', 'Manage Departments', NULL, 'Departments', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (21, 'manage_predefined_replies', 'Manage Predefined Replies', NULL, 'Predefined Replies', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (22, 'manage_expense_category', 'Manage Expense Category', NULL, 'Expenses', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (23, 'manage_expenses', 'Manage Expenses', NULL, 'Expenses', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (24, 'manage_services', 'Manage Services', NULL, 'Services', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (25, 'manage_items', 'Manage Items', NULL, 'Items', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (26, 'manage_items_groups', 'Manage Items Groups', NULL, 'Items', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (27, 'manage_tax_rates', 'Manage Tax Rates', NULL, 'TaxRate', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (28, 'manage_announcements', 'Manage Announcements', NULL, 'Announcements', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (29, 'manage_calenders', 'Manage Calenders', NULL, 'Calenders', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (30, 'manage_lead_sources', 'Manage Lead Sources', NULL, 'Leads', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (31, 'manage_contracts_types', 'Manage Contract Types', NULL, 'Contracts', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (32, 'manage_contracts', 'Manage Contracts', NULL, 'Contracts', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (33, 'manage_projects', 'Manage Projects', NULL, 'Projects', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (34, 'manage_goals', 'Manage Goals', NULL, 'Goals', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (35, 'manage_settings', 'Manage Settings', NULL, 'Settings', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (36, 'contact_projects', 'Contact Projects', NULL, 'Contacts', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (37, 'contact_invoices', 'Contact Invoices', NULL, 'Contacts', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (38, 'contact_proposals', 'Contact Proposals', NULL, 'Contacts', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (39, 'contact_contracts', 'Contact Contracts', NULL, 'Contacts', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (40, 'contact_estimates', 'Contact Estimates', NULL, 'Contacts', 'web', '2023-01-11 22:50:13', '2023-01-11 22:50:13'); -- -------------------------------------------------------- -- -- Table structure for table `predefined_replies` -- CREATE TABLE `predefined_replies` ( `id` int(10) UNSIGNED NOT NULL, `reply_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `body` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `projects` -- CREATE TABLE `projects` ( `id` int(10) UNSIGNED NOT NULL, `project_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `customer_id` int(10) UNSIGNED NOT NULL, `calculate_progress_through_tasks` tinyint(1) DEFAULT NULL, `progress` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `billing_type` int(11) NOT NULL, `status` int(11) NOT NULL, `estimated_hours` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date NOT NULL, `deadline` date NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `send_email` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `project_contacts` -- CREATE TABLE `project_contacts` ( `id` int(10) UNSIGNED NOT NULL, `contact_id` int(10) UNSIGNED NOT NULL, `project_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `project_members` -- CREATE TABLE `project_members` ( `id` int(10) UNSIGNED NOT NULL, `owner_id` int(11) NOT NULL, `owner_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `proposals` -- CREATE TABLE `proposals` ( `id` int(10) UNSIGNED NOT NULL, `proposal_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `related_to` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `date` datetime NOT NULL, `open_till` datetime DEFAULT NULL, `currency` int(11) NOT NULL, `discount_type` int(11) DEFAULT NULL, `status` int(11) NOT NULL, `assigned_user_id` int(11) DEFAULT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount` double DEFAULT NULL, `unit` int(11) NOT NULL, `sub_total` double DEFAULT NULL, `adjustment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `total_amount` double DEFAULT NULL, `payment_status` int(11) DEFAULT NULL, `owner_id` int(11) DEFAULT NULL, `owner_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_symbol` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `hsn_tax` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `proposal_addresses` -- CREATE TABLE `proposal_addresses` ( `id` int(10) UNSIGNED NOT NULL, `proposal_id` int(10) UNSIGNED NOT NULL, `type` int(11) NOT NULL, `street` text COLLATE utf8mb4_unicode_ci, `city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `reminders` -- CREATE TABLE `reminders` ( `id` int(10) UNSIGNED NOT NULL, `owner_id` int(11) NOT NULL, `owner_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `notified_date` datetime NOT NULL, `reminder_to` int(10) UNSIGNED NOT NULL, `added_by` int(11) NOT NULL, `description` text COLLATE utf8mb4_unicode_ci NOT NULL, `is_notified` tinyint(1) DEFAULT '0', `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `roles` -- CREATE TABLE `roles` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `display_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `guard_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `is_default` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `roles` -- INSERT INTO `roles` (`id`, `name`, `display_name`, `description`, `guard_name`, `is_default`, `created_at`, `updated_at`) VALUES (1, 'admin', 'Admin', NULL, 'web', 1, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (2, 'staff_member', 'Staff Member', NULL, 'web', 1, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (3, 'client', 'Client', NULL, 'web', 1, '2023-01-11 22:50:13', '2023-01-11 22:50:13'); -- -------------------------------------------------------- -- -- Table structure for table `role_has_permissions` -- CREATE TABLE `role_has_permissions` ( `permission_id` bigint(20) UNSIGNED NOT NULL, `role_id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `role_has_permissions` -- INSERT INTO `role_has_permissions` (`permission_id`, `role_id`) VALUES (1, 1), (2, 1), (3, 1), (4, 1), (5, 1), (6, 1), (7, 1), (8, 1), (9, 1), (10, 1), (11, 1), (12, 1), (13, 1), (14, 1), (15, 1), (16, 1), (17, 1), (18, 1), (19, 1), (20, 1), (21, 1), (22, 1), (23, 1), (24, 1), (25, 1), (26, 1), (27, 1), (28, 1), (29, 1), (30, 1), (31, 1), (32, 1), (33, 1), (34, 1), (35, 1), (36, 1), (37, 1), (38, 1), (39, 1), (40, 1); -- -------------------------------------------------------- -- -- Table structure for table `sales_items` -- CREATE TABLE `sales_items` ( `id` int(10) UNSIGNED NOT NULL, `owner_id` int(11) NOT NULL, `owner_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `item` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `quantity` int(11) NOT NULL, `rate` double NOT NULL, `total` double NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `sales_item_taxes` -- CREATE TABLE `sales_item_taxes` ( `id` int(10) UNSIGNED NOT NULL, `sales_item_id` int(10) UNSIGNED NOT NULL, `tax_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `sales_taxes` -- CREATE TABLE `sales_taxes` ( `id` int(10) UNSIGNED NOT NULL, `owner_id` int(11) NOT NULL, `owner_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `tax` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `amount` double NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `services` -- CREATE TABLE `services` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `services` -- INSERT INTO `services` (`id`, `name`, `created_at`, `updated_at`) VALUES (1, 'Empathy', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (2, 'Communication skills', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (3, 'Product knowledge', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (4, 'Patience', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (5, 'Positive attitude', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (6, 'Positive language', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (7, 'Personal responsibility', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (8, 'Confidence', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (9, 'Listening skills', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (10, 'Adaptability', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (11, 'Attentiveness', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (12, 'Professionalism', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (13, 'Acting ability', '2023-01-11 22:50:13', '2023-01-11 22:50:13'); -- -------------------------------------------------------- -- -- Table structure for table `settings` -- CREATE TABLE `settings` ( `id` int(10) UNSIGNED NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `value` text COLLATE utf8mb4_unicode_ci, `group` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `settings` -- INSERT INTO `settings` (`id`, `key`, `value`, `group`, `created_at`, `updated_at`) VALUES (1, 'default_country_code', 'in', 1, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (2, 'logo', 'http://crm.test/img/infyom-logo.png', 1, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (3, 'favicon', 'http://crm.test/img/infyom-favicon.png', 1, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (4, 'company_name', 'InfyCRM', 1, '2023-01-11 22:50:13', '2023-01-11 22:50:14'), (5, 'company_domain', '127.0.0.1', 1, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (6, 'file_type', '.png,.jpg,.pdf,.doc,.docx,.xls,.xlsx,.zip,.rar,.txt', 1, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (7, 'term_and_conditions', 'This Infycrm project is follow all term and conditions and privacy.', 1, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (8, 'company', 'InfyOmLabs', 2, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (9, 'address', '446, Tulsi Arcade, Nr. Sudama Chowk, Mota Varachha, Surat - 394101, Gujarat, India', 2, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (10, 'city', 'Surat', 2, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (11, 'state', 'Gujarat', 2, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (12, 'country_code', 'India [IN]', 2, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (13, 'zip_code', '394101', 2, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (14, 'phone', '+91 70963 36561', 2, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (15, 'vat_number', '1234567890', 2, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (16, 'current_currency', 'inr', 2, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (17, 'website', 'infyom.com', 2, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (18, 'company_information_format', '{company_name}\n {address}\n {city} {state}\n {country_code} {zip_code}\n {vat_number_with_label}', 2, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (19, 'admin_note', 'This is the admin note of the InfyCRM project.', 3, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (20, 'client_note', 'This is the client note of the InfyCRM project.', 3, '2023-01-11 22:50:13', '2023-01-11 22:50:13'); -- -------------------------------------------------------- -- -- Table structure for table `subscriptions` -- CREATE TABLE `subscriptions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `stripe_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `stripe_status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `stripe_price` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `quantity` int(11) DEFAULT NULL, `trial_ends_at` timestamp NULL DEFAULT NULL, `ends_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `subscription_items` -- CREATE TABLE `subscription_items` ( `id` bigint(20) UNSIGNED NOT NULL, `subscription_id` bigint(20) UNSIGNED NOT NULL, `stripe_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `stripe_product` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `stripe_price` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `quantity` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `taggables` -- CREATE TABLE `taggables` ( `id` int(10) UNSIGNED NOT NULL, `taggable_id` int(11) NOT NULL, `taggable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `tag_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `tags` -- CREATE TABLE `tags` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `tags` -- INSERT INTO `tags` (`id`, `name`, `description`, `created_at`, `updated_at`) VALUES (1, 'Bug', 'Bugs', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (2, 'Follow Up', 'Follow Up', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (3, 'Important', 'Important', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (4, 'Logo', 'Logo', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (5, 'Todo', 'Todo', '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (6, 'Tomorrow', 'Tomorrow', '2023-01-11 22:50:13', '2023-01-11 22:50:13'); -- -------------------------------------------------------- -- -- Table structure for table `tasks` -- CREATE TABLE `tasks` ( `id` int(10) UNSIGNED NOT NULL, `member_id` int(10) UNSIGNED DEFAULT NULL, `public` tinyint(1) DEFAULT NULL, `billable` tinyint(1) DEFAULT NULL, `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` int(11) NOT NULL, `hourly_rate` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` datetime DEFAULT NULL, `due_date` datetime DEFAULT NULL, `priority` int(11) DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci, `related_to` int(11) DEFAULT NULL, `owner_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `owner_id` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `tax_rates` -- CREATE TABLE `tax_rates` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `tax_rate` double NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `tax_rates` -- INSERT INTO `tax_rates` (`id`, `name`, `tax_rate`, `created_at`, `updated_at`) VALUES (1, 'Madera', 1, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (2, 'Fernado', 2, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (3, 'Agow', 5, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (4, 'Moon', 10, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (5, 'Agxm', 15, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (6, 'County', 20, '2023-01-11 22:50:13', '2023-01-11 22:50:13'); -- -------------------------------------------------------- -- -- Table structure for table `tickets` -- CREATE TABLE `tickets` ( `id` int(10) UNSIGNED NOT NULL, `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `contact_id` int(10) UNSIGNED DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `department_id` int(10) UNSIGNED DEFAULT NULL, `cc` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `assign_to` int(10) UNSIGNED DEFAULT NULL, `priority_id` int(10) UNSIGNED DEFAULT NULL, `service_id` int(10) UNSIGNED DEFAULT NULL, `predefined_reply_id` int(10) UNSIGNED DEFAULT NULL, `body` text COLLATE utf8mb4_unicode_ci, `ticket_status_id` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `ticket_priorities` -- CREATE TABLE `ticket_priorities` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `ticket_priorities` -- INSERT INTO `ticket_priorities` (`id`, `name`, `status`, `created_at`, `updated_at`) VALUES (1, 'Low', 1, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (2, 'Medium', 0, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (3, 'High', 1, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (4, 'Urgent', 0, '2023-01-11 22:50:13', '2023-01-11 22:50:13'); -- -------------------------------------------------------- -- -- Table structure for table `ticket_replies` -- CREATE TABLE `ticket_replies` ( `id` bigint(20) UNSIGNED NOT NULL, `ticket_id` int(10) UNSIGNED NOT NULL, `user_id` int(10) UNSIGNED NOT NULL, `reply` text COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `ticket_statuses` -- CREATE TABLE `ticket_statuses` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `pick_color` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `is_default` int(11) DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `ticket_statuses` -- INSERT INTO `ticket_statuses` (`id`, `name`, `pick_color`, `is_default`, `created_at`, `updated_at`) VALUES (1, 'Open', '#fc544b', 1, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (2, 'In Progress', '#6777ef', 1, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (3, 'Answered', '#3abaf4', 1, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (4, 'On Hold', '#ffa426', 1, '2023-01-11 22:50:13', '2023-01-11 22:50:13'), (5, 'Closed', '#47c363', 1, '2023-01-11 22:50:13', '2023-01-11 22:50:13'); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` int(10) UNSIGNED NOT NULL, `first_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `last_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `owner_id` int(11) DEFAULT NULL, `owner_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_enable` tinyint(1) NOT NULL DEFAULT '1', `is_admin` tinyint(1) NOT NULL DEFAULT '0', `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `facebook` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `linkedin` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `skype` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `staff_member` tinyint(1) DEFAULT NULL, `send_welcome_email` tinyint(1) DEFAULT NULL, `default_language` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `stripe_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pm_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pm_last_four` varchar(4) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `trial_ends_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `first_name`, `last_name`, `email`, `phone`, `password`, `owner_id`, `owner_type`, `is_enable`, `is_admin`, `image`, `facebook`, `linkedin`, `skype`, `staff_member`, `send_welcome_email`, `default_language`, `email_verified_at`, `remember_token`, `created_at`, `updated_at`, `stripe_id`, `pm_type`, `pm_last_four`, `trial_ends_at`) VALUES (1, 'Super', 'Admin', 'admin@infycrm.com', '+917878454512', '$2y$10$wxDbHkXgU6M.wT4SUOdfFu70Y8Rb2v9fW6GNzKkwwLFNTOadYwVNy', NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-11 22:50:13', NULL, '2023-01-11 22:50:13', '2023-01-11 22:50:14', NULL, NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `user_departments` -- CREATE TABLE `user_departments` ( `user_id` int(10) UNSIGNED NOT NULL, `department_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Indexes for dumped tables -- -- -- Indexes for table `activity_log` -- ALTER TABLE `activity_log` ADD PRIMARY KEY (`id`), ADD KEY `subject` (`subject_type`,`subject_id`), ADD KEY `causer` (`causer_type`,`causer_id`), ADD KEY `activity_log_log_name_index` (`log_name`); -- -- Indexes for table `addresses` -- ALTER TABLE `addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `announcements` -- ALTER TABLE `announcements` ADD PRIMARY KEY (`id`); -- -- Indexes for table `articles` -- ALTER TABLE `articles` ADD PRIMARY KEY (`id`), ADD KEY `articles_group_id_foreign` (`group_id`); -- -- Indexes for table `article_groups` -- ALTER TABLE `article_groups` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `article_groups_group_name_unique` (`group_name`); -- -- Indexes for table `comments` -- ALTER TABLE `comments` ADD PRIMARY KEY (`id`); -- -- Indexes for table `contacts` -- ALTER TABLE `contacts` ADD PRIMARY KEY (`id`), ADD KEY `contacts_customer_id_foreign` (`customer_id`), ADD KEY `contacts_user_id_foreign` (`user_id`); -- -- Indexes for table `contact_email_notifications` -- ALTER TABLE `contact_email_notifications` ADD PRIMARY KEY (`id`), ADD KEY `contact_email_notifications_contact_id_foreign` (`contact_id`), ADD KEY `contact_email_notifications_email_notification_id_foreign` (`email_notification_id`); -- -- Indexes for table `contracts` -- ALTER TABLE `contracts` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `contracts_subject_unique` (`subject`), ADD KEY `contracts_customer_id_foreign` (`customer_id`), ADD KEY `contracts_contract_type_id_foreign` (`contract_type_id`); -- -- Indexes for table `contract_types` -- ALTER TABLE `contract_types` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `contract_types_name_unique` (`name`); -- -- Indexes for table `countries` -- ALTER TABLE `countries` ADD PRIMARY KEY (`id`); -- -- Indexes for table `credit_notes` -- ALTER TABLE `credit_notes` ADD PRIMARY KEY (`id`), ADD KEY `credit_notes_customer_id_foreign` (`customer_id`); -- -- Indexes for table `credit_note_addresses` -- ALTER TABLE `credit_note_addresses` ADD PRIMARY KEY (`id`), ADD KEY `credit_note_addresses_credit_note_id_foreign` (`credit_note_id`); -- -- Indexes for table `customers` -- ALTER TABLE `customers` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_groups` -- ALTER TABLE `customer_groups` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `customer_groups_name_unique` (`name`); -- -- Indexes for table `customer_to_customer_groups` -- ALTER TABLE `customer_to_customer_groups` ADD PRIMARY KEY (`id`), ADD KEY `customer_to_customer_groups_customer_id_foreign` (`customer_id`), ADD KEY `customer_to_customer_groups_customer_group_id_foreign` (`customer_group_id`); -- -- Indexes for table `departments` -- ALTER TABLE `departments` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `departments_name_unique` (`name`); -- -- Indexes for table `email_notifications` -- ALTER TABLE `email_notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `email_templates` -- ALTER TABLE `email_templates` ADD PRIMARY KEY (`id`); -- -- Indexes for table `estimates` -- ALTER TABLE `estimates` ADD PRIMARY KEY (`id`), ADD KEY `estimates_customer_id_foreign` (`customer_id`), ADD KEY `estimates_sales_agent_id_foreign` (`sales_agent_id`); -- -- Indexes for table `estimate_addresses` -- ALTER TABLE `estimate_addresses` ADD PRIMARY KEY (`id`), ADD KEY `estimate_addresses_estimate_id_foreign` (`estimate_id`); -- -- Indexes for table `expenses` -- ALTER TABLE `expenses` ADD PRIMARY KEY (`id`), ADD KEY `expenses_expense_category_id_foreign` (`expense_category_id`), ADD KEY `expenses_tax_1_id_foreign` (`tax_1_id`), ADD KEY `expenses_tax_2_id_foreign` (`tax_2_id`), ADD KEY `expenses_payment_mode_id_foreign` (`payment_mode_id`), ADD KEY `expenses_customer_id_foreign` (`customer_id`); -- -- Indexes for table `expense_categories` -- ALTER TABLE `expense_categories` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `expense_categories_name_unique` (`name`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`); -- -- Indexes for table `goals` -- ALTER TABLE `goals` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `goals_subject_unique` (`subject`); -- -- Indexes for table `goal_members` -- ALTER TABLE `goal_members` ADD PRIMARY KEY (`id`), ADD KEY `goal_members_user_id_foreign` (`user_id`), ADD KEY `goal_members_goal_id_foreign` (`goal_id`); -- -- Indexes for table `goal_types` -- ALTER TABLE `goal_types` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `goal_types_name_unique` (`name`); -- -- Indexes for table `invoices` -- ALTER TABLE `invoices` ADD PRIMARY KEY (`id`), ADD KEY `invoices_customer_id_foreign` (`customer_id`), ADD KEY `invoices_sales_agent_id_foreign` (`sales_agent_id`); -- -- Indexes for table `invoice_addresses` -- ALTER TABLE `invoice_addresses` ADD PRIMARY KEY (`id`), ADD KEY `invoice_addresses_invoice_id_foreign` (`invoice_id`); -- -- Indexes for table `invoice_payment_modes` -- ALTER TABLE `invoice_payment_modes` ADD PRIMARY KEY (`id`), ADD KEY `invoice_payment_modes_payment_mode_id_foreign` (`payment_mode_id`), ADD KEY `invoice_payment_modes_invoice_id_foreign` (`invoice_id`); -- -- Indexes for table `items` -- ALTER TABLE `items` ADD PRIMARY KEY (`id`), ADD KEY `items_item_group_id_foreign` (`item_group_id`); -- -- Indexes for table `item_groups` -- ALTER TABLE `item_groups` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `item_groups_name_unique` (`name`); -- -- Indexes for table `languages` -- ALTER TABLE `languages` ADD PRIMARY KEY (`id`); -- -- Indexes for table `leads` -- ALTER TABLE `leads` ADD PRIMARY KEY (`id`), ADD KEY `leads_status_id_foreign` (`status_id`), ADD KEY `leads_source_id_foreign` (`source_id`), ADD KEY `leads_assign_to_foreign` (`assign_to`); -- -- Indexes for table `lead_sources` -- ALTER TABLE `lead_sources` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `lead_sources_name_unique` (`name`); -- -- Indexes for table `lead_statuses` -- ALTER TABLE `lead_statuses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `media` -- ALTER TABLE `media` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `media_uuid_unique` (`uuid`), ADD KEY `media_model_type_model_id_index` (`model_type`,`model_id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `model_has_permissions` -- ALTER TABLE `model_has_permissions` ADD PRIMARY KEY (`permission_id`,`model_id`,`model_type`), ADD KEY `model_has_permissions_model_id_model_type_index` (`model_id`,`model_type`); -- -- Indexes for table `model_has_roles` -- ALTER TABLE `model_has_roles` ADD PRIMARY KEY (`role_id`,`model_id`,`model_type`), ADD KEY `model_has_roles_model_id_model_type_index` (`model_id`,`model_type`); -- -- Indexes for table `notes` -- ALTER TABLE `notes` ADD PRIMARY KEY (`id`), ADD KEY `notes_added_by_foreign` (`added_by`); -- -- Indexes for table `notifications` -- ALTER TABLE `notifications` ADD PRIMARY KEY (`id`), ADD KEY `notifications_user_id_foreign` (`user_id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`email`); -- -- Indexes for table `payments` -- ALTER TABLE `payments` ADD PRIMARY KEY (`id`), ADD KEY `payments_payment_mode_foreign` (`payment_mode`); -- -- Indexes for table `payment_modes` -- ALTER TABLE `payment_modes` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `payment_modes_name_unique` (`name`); -- -- Indexes for table `permissions` -- ALTER TABLE `permissions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `predefined_replies` -- ALTER TABLE `predefined_replies` ADD PRIMARY KEY (`id`); -- -- Indexes for table `projects` -- ALTER TABLE `projects` ADD PRIMARY KEY (`id`), ADD KEY `projects_customer_id_foreign` (`customer_id`); -- -- Indexes for table `project_contacts` -- ALTER TABLE `project_contacts` ADD PRIMARY KEY (`id`), ADD KEY `project_contacts_contact_id_foreign` (`contact_id`), ADD KEY `project_contacts_project_id_foreign` (`project_id`); -- -- Indexes for table `project_members` -- ALTER TABLE `project_members` ADD PRIMARY KEY (`id`), ADD KEY `project_members_user_id_foreign` (`user_id`); -- -- Indexes for table `proposals` -- ALTER TABLE `proposals` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `proposals_proposal_number_unique` (`proposal_number`); -- -- Indexes for table `proposal_addresses` -- ALTER TABLE `proposal_addresses` ADD PRIMARY KEY (`id`), ADD KEY `proposal_addresses_proposal_id_foreign` (`proposal_id`); -- -- Indexes for table `reminders` -- ALTER TABLE `reminders` ADD PRIMARY KEY (`id`), ADD KEY `reminders_reminder_to_foreign` (`reminder_to`); -- -- Indexes for table `roles` -- ALTER TABLE `roles` ADD PRIMARY KEY (`id`); -- -- Indexes for table `role_has_permissions` -- ALTER TABLE `role_has_permissions` ADD PRIMARY KEY (`permission_id`,`role_id`), ADD KEY `role_has_permissions_role_id_foreign` (`role_id`); -- -- Indexes for table `sales_items` -- ALTER TABLE `sales_items` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sales_item_taxes` -- ALTER TABLE `sales_item_taxes` ADD PRIMARY KEY (`id`), ADD KEY `sales_item_taxes_tax_id_foreign` (`tax_id`), ADD KEY `sales_item_taxes_sales_item_id_foreign` (`sales_item_id`); -- -- Indexes for table `sales_taxes` -- ALTER TABLE `sales_taxes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `services` -- ALTER TABLE `services` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `services_name_unique` (`name`); -- -- Indexes for table `settings` -- ALTER TABLE `settings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `subscriptions` -- ALTER TABLE `subscriptions` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `subscriptions_stripe_id_unique` (`stripe_id`), ADD KEY `subscriptions_user_id_stripe_status_index` (`user_id`,`stripe_status`); -- -- Indexes for table `subscription_items` -- ALTER TABLE `subscription_items` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `subscription_items_subscription_id_stripe_price_unique` (`subscription_id`,`stripe_price`), ADD UNIQUE KEY `subscription_items_stripe_id_unique` (`stripe_id`); -- -- Indexes for table `taggables` -- ALTER TABLE `taggables` ADD PRIMARY KEY (`id`), ADD KEY `taggables_tag_id_foreign` (`tag_id`); -- -- Indexes for table `tags` -- ALTER TABLE `tags` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tasks` -- ALTER TABLE `tasks` ADD PRIMARY KEY (`id`), ADD KEY `tasks_member_id_foreign` (`member_id`); -- -- Indexes for table `tax_rates` -- ALTER TABLE `tax_rates` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `tax_rates_name_unique` (`name`); -- -- Indexes for table `tickets` -- ALTER TABLE `tickets` ADD PRIMARY KEY (`id`), ADD KEY `tickets_priority_id_foreign` (`priority_id`), ADD KEY `tickets_service_id_foreign` (`service_id`), ADD KEY `tickets_ticket_status_id_foreign` (`ticket_status_id`), ADD KEY `tickets_predefined_reply_id_foreign` (`predefined_reply_id`), ADD KEY `tickets_contact_id_foreign` (`contact_id`), ADD KEY `tickets_department_id_foreign` (`department_id`), ADD KEY `tickets_assign_to_foreign` (`assign_to`); -- -- Indexes for table `ticket_priorities` -- ALTER TABLE `ticket_priorities` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `ticket_priorities_name_unique` (`name`); -- -- Indexes for table `ticket_replies` -- ALTER TABLE `ticket_replies` ADD PRIMARY KEY (`id`), ADD KEY `ticket_replies_ticket_id_foreign` (`ticket_id`), ADD KEY `ticket_replies_user_id_foreign` (`user_id`); -- -- Indexes for table `ticket_statuses` -- ALTER TABLE `ticket_statuses` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `ticket_statuses_name_unique` (`name`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`), ADD KEY `users_stripe_id_index` (`stripe_id`); -- -- Indexes for table `user_departments` -- ALTER TABLE `user_departments` ADD KEY `user_departments_user_id_foreign` (`user_id`), ADD KEY `user_departments_department_id_foreign` (`department_id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `activity_log` -- ALTER TABLE `activity_log` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `addresses` -- ALTER TABLE `addresses` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `announcements` -- ALTER TABLE `announcements` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `articles` -- ALTER TABLE `articles` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `article_groups` -- ALTER TABLE `article_groups` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `comments` -- ALTER TABLE `comments` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `contacts` -- ALTER TABLE `contacts` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `contact_email_notifications` -- ALTER TABLE `contact_email_notifications` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `contracts` -- ALTER TABLE `contracts` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `contract_types` -- ALTER TABLE `contract_types` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `countries` -- ALTER TABLE `countries` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `credit_notes` -- ALTER TABLE `credit_notes` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `credit_note_addresses` -- ALTER TABLE `credit_note_addresses` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customers` -- ALTER TABLE `customers` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customer_groups` -- ALTER TABLE `customer_groups` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `customer_to_customer_groups` -- ALTER TABLE `customer_to_customer_groups` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `departments` -- ALTER TABLE `departments` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `email_notifications` -- ALTER TABLE `email_notifications` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `email_templates` -- ALTER TABLE `email_templates` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `estimates` -- ALTER TABLE `estimates` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `estimate_addresses` -- ALTER TABLE `estimate_addresses` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `expenses` -- ALTER TABLE `expenses` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `expense_categories` -- ALTER TABLE `expense_categories` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `goals` -- ALTER TABLE `goals` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `goal_members` -- ALTER TABLE `goal_members` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `goal_types` -- ALTER TABLE `goal_types` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `invoices` -- ALTER TABLE `invoices` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `invoice_addresses` -- ALTER TABLE `invoice_addresses` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `invoice_payment_modes` -- ALTER TABLE `invoice_payment_modes` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `items` -- ALTER TABLE `items` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `item_groups` -- ALTER TABLE `item_groups` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `languages` -- ALTER TABLE `languages` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `leads` -- ALTER TABLE `leads` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `lead_sources` -- ALTER TABLE `lead_sources` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `lead_statuses` -- ALTER TABLE `lead_statuses` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `media` -- ALTER TABLE `media` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=95; -- -- AUTO_INCREMENT for table `notes` -- ALTER TABLE `notes` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `notifications` -- ALTER TABLE `notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `payments` -- ALTER TABLE `payments` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `payment_modes` -- ALTER TABLE `payment_modes` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `permissions` -- ALTER TABLE `permissions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=41; -- -- AUTO_INCREMENT for table `predefined_replies` -- ALTER TABLE `predefined_replies` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `projects` -- ALTER TABLE `projects` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `project_contacts` -- ALTER TABLE `project_contacts` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `project_members` -- ALTER TABLE `project_members` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `proposals` -- ALTER TABLE `proposals` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `proposal_addresses` -- ALTER TABLE `proposal_addresses` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `reminders` -- ALTER TABLE `reminders` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `roles` -- ALTER TABLE `roles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `sales_items` -- ALTER TABLE `sales_items` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `sales_item_taxes` -- ALTER TABLE `sales_item_taxes` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `sales_taxes` -- ALTER TABLE `sales_taxes` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `services` -- ALTER TABLE `services` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14; -- -- AUTO_INCREMENT for table `settings` -- ALTER TABLE `settings` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21; -- -- AUTO_INCREMENT for table `subscriptions` -- ALTER TABLE `subscriptions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `subscription_items` -- ALTER TABLE `subscription_items` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `taggables` -- ALTER TABLE `taggables` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `tags` -- ALTER TABLE `tags` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `tasks` -- ALTER TABLE `tasks` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `tax_rates` -- ALTER TABLE `tax_rates` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `tickets` -- ALTER TABLE `tickets` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `ticket_priorities` -- ALTER TABLE `ticket_priorities` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `ticket_replies` -- ALTER TABLE `ticket_replies` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `ticket_statuses` -- ALTER TABLE `ticket_statuses` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- Constraints for dumped tables -- -- -- Constraints for table `articles` -- ALTER TABLE `articles` ADD CONSTRAINT `articles_group_id_foreign` FOREIGN KEY (`group_id`) REFERENCES `article_groups` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `contacts` -- ALTER TABLE `contacts` ADD CONSTRAINT `contacts_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `contacts_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `contact_email_notifications` -- ALTER TABLE `contact_email_notifications` ADD CONSTRAINT `contact_email_notifications_contact_id_foreign` FOREIGN KEY (`contact_id`) REFERENCES `contacts` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `contact_email_notifications_email_notification_id_foreign` FOREIGN KEY (`email_notification_id`) REFERENCES `email_notifications` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `contracts` -- ALTER TABLE `contracts` ADD CONSTRAINT `contracts_contract_type_id_foreign` FOREIGN KEY (`contract_type_id`) REFERENCES `contract_types` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `contracts_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `credit_notes` -- ALTER TABLE `credit_notes` ADD CONSTRAINT `credit_notes_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `credit_note_addresses` -- ALTER TABLE `credit_note_addresses` ADD CONSTRAINT `credit_note_addresses_credit_note_id_foreign` FOREIGN KEY (`credit_note_id`) REFERENCES `credit_notes` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `customer_to_customer_groups` -- ALTER TABLE `customer_to_customer_groups` ADD CONSTRAINT `customer_to_customer_groups_customer_group_id_foreign` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_groups` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `customer_to_customer_groups_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `estimates` -- ALTER TABLE `estimates` ADD CONSTRAINT `estimates_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `estimates_sales_agent_id_foreign` FOREIGN KEY (`sales_agent_id`) REFERENCES `users` (`id`) ON DELETE SET NULL ON UPDATE CASCADE; -- -- Constraints for table `estimate_addresses` -- ALTER TABLE `estimate_addresses` ADD CONSTRAINT `estimate_addresses_estimate_id_foreign` FOREIGN KEY (`estimate_id`) REFERENCES `estimates` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `expenses` -- ALTER TABLE `expenses` ADD CONSTRAINT `expenses_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `expenses_expense_category_id_foreign` FOREIGN KEY (`expense_category_id`) REFERENCES `expense_categories` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `expenses_payment_mode_id_foreign` FOREIGN KEY (`payment_mode_id`) REFERENCES `payment_modes` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `expenses_tax_1_id_foreign` FOREIGN KEY (`tax_1_id`) REFERENCES `tax_rates` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `expenses_tax_2_id_foreign` FOREIGN KEY (`tax_2_id`) REFERENCES `tax_rates` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `goal_members` -- ALTER TABLE `goal_members` ADD CONSTRAINT `goal_members_goal_id_foreign` FOREIGN KEY (`goal_id`) REFERENCES `goals` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `goal_members_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `invoices` -- ALTER TABLE `invoices` ADD CONSTRAINT `invoices_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `invoices_sales_agent_id_foreign` FOREIGN KEY (`sales_agent_id`) REFERENCES `users` (`id`) ON DELETE SET NULL ON UPDATE CASCADE; -- -- Constraints for table `invoice_addresses` -- ALTER TABLE `invoice_addresses` ADD CONSTRAINT `invoice_addresses_invoice_id_foreign` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `invoice_payment_modes` -- ALTER TABLE `invoice_payment_modes` ADD CONSTRAINT `invoice_payment_modes_invoice_id_foreign` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `invoice_payment_modes_payment_mode_id_foreign` FOREIGN KEY (`payment_mode_id`) REFERENCES `payment_modes` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `items` -- ALTER TABLE `items` ADD CONSTRAINT `items_item_group_id_foreign` FOREIGN KEY (`item_group_id`) REFERENCES `item_groups` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `leads` -- ALTER TABLE `leads` ADD CONSTRAINT `leads_assign_to_foreign` FOREIGN KEY (`assign_to`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `leads_source_id_foreign` FOREIGN KEY (`source_id`) REFERENCES `lead_sources` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `leads_status_id_foreign` FOREIGN KEY (`status_id`) REFERENCES `lead_statuses` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `model_has_permissions` -- ALTER TABLE `model_has_permissions` ADD CONSTRAINT `model_has_permissions_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE; -- -- Constraints for table `model_has_roles` -- ALTER TABLE `model_has_roles` ADD CONSTRAINT `model_has_roles_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE; -- -- Constraints for table `notes` -- ALTER TABLE `notes` ADD CONSTRAINT `notes_added_by_foreign` FOREIGN KEY (`added_by`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `notifications` -- ALTER TABLE `notifications` ADD CONSTRAINT `notifications_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `payments` -- ALTER TABLE `payments` ADD CONSTRAINT `payments_payment_mode_foreign` FOREIGN KEY (`payment_mode`) REFERENCES `payment_modes` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `projects` -- ALTER TABLE `projects` ADD CONSTRAINT `projects_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `project_contacts` -- ALTER TABLE `project_contacts` ADD CONSTRAINT `project_contacts_contact_id_foreign` FOREIGN KEY (`contact_id`) REFERENCES `contacts` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `project_contacts_project_id_foreign` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `project_members` -- ALTER TABLE `project_members` ADD CONSTRAINT `project_members_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `proposal_addresses` -- ALTER TABLE `proposal_addresses` ADD CONSTRAINT `proposal_addresses_proposal_id_foreign` FOREIGN KEY (`proposal_id`) REFERENCES `proposals` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `reminders` -- ALTER TABLE `reminders` ADD CONSTRAINT `reminders_reminder_to_foreign` FOREIGN KEY (`reminder_to`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `role_has_permissions` -- ALTER TABLE `role_has_permissions` ADD CONSTRAINT `role_has_permissions_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `role_has_permissions_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE; -- -- Constraints for table `sales_item_taxes` -- ALTER TABLE `sales_item_taxes` ADD CONSTRAINT `sales_item_taxes_sales_item_id_foreign` FOREIGN KEY (`sales_item_id`) REFERENCES `sales_items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `sales_item_taxes_tax_id_foreign` FOREIGN KEY (`tax_id`) REFERENCES `tax_rates` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `taggables` -- ALTER TABLE `taggables` ADD CONSTRAINT `taggables_tag_id_foreign` FOREIGN KEY (`tag_id`) REFERENCES `tags` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `tasks` -- ALTER TABLE `tasks` ADD CONSTRAINT `tasks_member_id_foreign` FOREIGN KEY (`member_id`) REFERENCES `users` (`id`) ON DELETE SET NULL ON UPDATE CASCADE; -- -- Constraints for table `tickets` -- ALTER TABLE `tickets` ADD CONSTRAINT `tickets_assign_to_foreign` FOREIGN KEY (`assign_to`) REFERENCES `users` (`id`) ON DELETE SET NULL ON UPDATE CASCADE, ADD CONSTRAINT `tickets_contact_id_foreign` FOREIGN KEY (`contact_id`) REFERENCES `contacts` (`id`) ON DELETE SET NULL ON UPDATE CASCADE, ADD CONSTRAINT `tickets_department_id_foreign` FOREIGN KEY (`department_id`) REFERENCES `departments` (`id`) ON DELETE SET NULL ON UPDATE CASCADE, ADD CONSTRAINT `tickets_predefined_reply_id_foreign` FOREIGN KEY (`predefined_reply_id`) REFERENCES `predefined_replies` (`id`) ON DELETE SET NULL ON UPDATE CASCADE, ADD CONSTRAINT `tickets_priority_id_foreign` FOREIGN KEY (`priority_id`) REFERENCES `ticket_priorities` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `tickets_service_id_foreign` FOREIGN KEY (`service_id`) REFERENCES `services` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `tickets_ticket_status_id_foreign` FOREIGN KEY (`ticket_status_id`) REFERENCES `ticket_statuses` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `ticket_replies` -- ALTER TABLE `ticket_replies` ADD CONSTRAINT `ticket_replies_ticket_id_foreign` FOREIGN KEY (`ticket_id`) REFERENCES `tickets` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `ticket_replies_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `user_departments` -- ALTER TABLE `user_departments` ADD CONSTRAINT `user_departments_department_id_foreign` FOREIGN KEY (`department_id`) REFERENCES `departments` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `user_departments_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; COMMIT; /*!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 */;