⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
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
/
hospital.dev-unit.com
/
database
/
View File Name :
hms-saas.sql
-- phpMyAdmin SQL Dump -- version 5.2.1 -- https://www.phpmyadmin.net/ -- -- Host: localhost -- Generation Time: Jun 05, 2025 at 05:16 AM -- Server version: 8.0.31 -- PHP Version: 8.2.27 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: `hms-saas` -- -- -------------------------------------------------------- -- -- Table structure for table `accountants` -- CREATE TABLE `accountants` ( `id` int UNSIGNED NOT NULL, `user_id` bigint UNSIGNED NOT NULL, `tenant_id` varchar(255) 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 `accounts` -- CREATE TABLE `accounts` ( `id` int UNSIGNED NOT NULL, `name` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL, `type` tinyint NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `status` tinyint(1) NOT NULL DEFAULT '0', `tenant_id` varchar(255) 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` bigint UNSIGNED NOT NULL, `owner_id` int DEFAULT NULL, `owner_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address1` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address2` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `tenant_id` varchar(255) 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 `admin_testimonials` -- CREATE TABLE `admin_testimonials` ( `id` bigint UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `position` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `description` 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; -- -- Dumping data for table `admin_testimonials` -- INSERT INTO `admin_testimonials` (`id`, `name`, `position`, `description`, `created_at`, `updated_at`) VALUES (1, 'Jasse Lynn', 'Founder of Sassaht', 'Eeque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur,\n adipisci velit, sed quia non numquam eius modi tempora incidunt contact\n me.', '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (2, 'Thomas James', 'CEO of Sassaht', 'Reasonable porro quisquam est, qui dolorem ipsum quia dolor sit amet,\n consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt\n looks.', '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (3, 'Ceathy White', 'Founder of Sassaht', 'On the other hand, we denounce with righteous indignation and dislike men who\n are so beguiled and demoralized by the charms of pleasure of the momen\n words.', '2025-06-04 23:42:26', '2025-06-04 23:42:26'); -- -------------------------------------------------------- -- -- Table structure for table `advanced_payments` -- CREATE TABLE `advanced_payments` ( `id` int UNSIGNED NOT NULL, `patient_id` bigint UNSIGNED NOT NULL, `receipt_no` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `amount` double NOT NULL, `date` date NOT NULL, `tenant_id` varchar(255) 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 `ambulances` -- CREATE TABLE `ambulances` ( `id` int UNSIGNED NOT NULL, `vehicle_number` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL, `vehicle_model` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `year_made` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `driver_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `driver_license` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `driver_contact` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `note` text COLLATE utf8mb4_unicode_ci, `is_available` tinyint(1) NOT NULL DEFAULT '1', `vehicle_type` int NOT NULL DEFAULT '1', `tenant_id` varchar(255) 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 `ambulance_calls` -- CREATE TABLE `ambulance_calls` ( `id` int UNSIGNED NOT NULL, `patient_id` int UNSIGNED NOT NULL, `ambulance_id` int UNSIGNED NOT NULL, `driver_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `date` date NOT NULL, `amount` double NOT NULL, `tenant_id` varchar(255) 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 `appointments` -- CREATE TABLE `appointments` ( `id` bigint UNSIGNED NOT NULL, `patient_id` int UNSIGNED NOT NULL, `doctor_id` bigint UNSIGNED NOT NULL, `department_id` bigint UNSIGNED NOT NULL, `opd_date` datetime NOT NULL, `problem` text COLLATE utf8mb4_unicode_ci, `is_completed` tinyint(1) NOT NULL DEFAULT '0', `payment_status` tinyint(1) NOT NULL DEFAULT '0', `payment_type` int DEFAULT NULL, `custom_field` longtext COLLATE utf8mb4_unicode_ci, `tenant_id` varchar(255) 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 `appointment_transactions` -- CREATE TABLE `appointment_transactions` ( `id` bigint UNSIGNED NOT NULL, `appointment_id` bigint UNSIGNED NOT NULL, `transaction_type` int NOT NULL, `transaction_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `tenant_id` varchar(255) 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 `beds` -- CREATE TABLE `beds` ( `id` int UNSIGNED NOT NULL, `bed_type` int UNSIGNED NOT NULL, `bed_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `charge` double NOT NULL, `is_available` tinyint(1) NOT NULL DEFAULT '1', `tenant_id` varchar(255) 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 `bed_assigns` -- CREATE TABLE `bed_assigns` ( `id` int UNSIGNED NOT NULL, `bed_id` int UNSIGNED NOT NULL, `ipd_patient_department_id` int UNSIGNED DEFAULT NULL, `patient_id` int UNSIGNED NOT NULL, `case_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `assign_date` datetime NOT NULL, `discharge_date` datetime DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci, `status` tinyint(1) NOT NULL DEFAULT '0', `tenant_id` varchar(255) 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 `bed_types` -- CREATE TABLE `bed_types` ( `id` int UNSIGNED NOT NULL, `title` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `tenant_id` varchar(255) 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 `bills` -- CREATE TABLE `bills` ( `id` int UNSIGNED NOT NULL, `bill_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `patient_id` int UNSIGNED NOT NULL, `bill_date` datetime NOT NULL, `amount` decimal(16,2) DEFAULT NULL, `tenant_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `patient_admission_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `bill_items` -- CREATE TABLE `bill_items` ( `id` int UNSIGNED NOT NULL, `item_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `bill_id` int UNSIGNED NOT NULL, `qty` int UNSIGNED NOT NULL, `price` decimal(16,2) NOT NULL, `amount` decimal(16,2) 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 `bill_transactions` -- CREATE TABLE `bill_transactions` ( `id` bigint UNSIGNED NOT NULL, `transaction_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `payment_type` int NOT NULL COMMENT '1 = Stripe, 2 = Manual', `amount` decimal(16,2) NOT NULL, `bill_id` int UNSIGNED NOT NULL, `status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `meta` text COLLATE utf8mb4_unicode_ci, `tenant_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_manual_payment` int 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 `birth_reports` -- CREATE TABLE `birth_reports` ( `id` int UNSIGNED NOT NULL, `patient_id` int UNSIGNED NOT NULL, `case_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `doctor_id` bigint UNSIGNED NOT NULL, `date` datetime NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `tenant_id` varchar(255) 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 `blood_banks` -- CREATE TABLE `blood_banks` ( `id` int UNSIGNED NOT NULL, `blood_group` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `remained_bags` bigint NOT NULL, `tenant_id` varchar(255) 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 `blood_donations` -- CREATE TABLE `blood_donations` ( `id` int UNSIGNED NOT NULL, `blood_donor_id` int UNSIGNED NOT NULL, `bags` int NOT NULL DEFAULT '1', `tenant_id` varchar(255) 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 `blood_donors` -- CREATE TABLE `blood_donors` ( `id` int UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `age` int NOT NULL, `gender` int NOT NULL, `blood_group` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `last_donate_date` datetime NOT NULL, `tenant_id` varchar(255) 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 `blood_issues` -- CREATE TABLE `blood_issues` ( `id` bigint UNSIGNED NOT NULL, `issue_date` datetime NOT NULL, `doctor_id` bigint UNSIGNED NOT NULL, `donor_id` int UNSIGNED NOT NULL, `patient_id` int UNSIGNED NOT NULL, `amount` decimal(10,2) NOT NULL DEFAULT '0.00', `remarks` text COLLATE utf8mb4_unicode_ci, `tenant_id` varchar(255) 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 `brands` -- CREATE TABLE `brands` ( `id` int UNSIGNED NOT NULL, `name` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `tenant_id` varchar(255) 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 `cache` -- CREATE TABLE `cache` ( `key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `value` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `expiration` int NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cache_locks` -- CREATE TABLE `cache_locks` ( `key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `owner` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `expiration` int NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `call_logs` -- CREATE TABLE `call_logs` ( `id` bigint UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `phone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `date` date DEFAULT NULL, `follow_up_date` date DEFAULT NULL, `note` text COLLATE utf8mb4_unicode_ci, `call_type` int NOT NULL, `tenant_id` varchar(255) 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 `case_handlers` -- CREATE TABLE `case_handlers` ( `id` int UNSIGNED NOT NULL, `user_id` bigint UNSIGNED NOT NULL, `tenant_id` varchar(255) 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 `categories` -- CREATE TABLE `categories` ( `id` int UNSIGNED NOT NULL, `name` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '0', `tenant_id` varchar(255) 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 `charges` -- CREATE TABLE `charges` ( `id` int UNSIGNED NOT NULL, `charge_type` int NOT NULL, `charge_category_id` int UNSIGNED NOT NULL, `code` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL, `standard_charge` double NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `tenant_id` varchar(255) 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 `charge_categories` -- CREATE TABLE `charge_categories` ( `id` int UNSIGNED NOT NULL, `name` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `charge_type` int NOT NULL, `tenant_id` varchar(255) 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 `currency_settings` -- CREATE TABLE `currency_settings` ( `id` bigint UNSIGNED NOT NULL, `currency_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `currency_code` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `currency_icon` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `tenant_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `custom_fields` -- CREATE TABLE `custom_fields` ( `id` bigint UNSIGNED NOT NULL, `module_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `field_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `field_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `is_required` tinyint(1) NOT NULL, `values` text COLLATE utf8mb4_unicode_ci, `grid` int NOT NULL DEFAULT '12', `tenant_id` varchar(255) 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 `death_reports` -- CREATE TABLE `death_reports` ( `id` int UNSIGNED NOT NULL, `patient_id` int UNSIGNED NOT NULL, `case_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `doctor_id` bigint UNSIGNED NOT NULL, `date` datetime NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `tenant_id` varchar(255) 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 `departments` -- CREATE TABLE `departments` ( `id` bigint UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '0', `guard_name` varchar(255) 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; -- -- Dumping data for table `departments` -- INSERT INTO `departments` (`id`, `name`, `is_active`, `guard_name`, `created_at`, `updated_at`) VALUES (1, 'Admin', 1, 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (2, 'Doctor', 1, 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (3, 'Patient', 1, 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (4, 'Nurse', 1, 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (5, 'Receptionist', 1, 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (6, 'Pharmacist', 1, 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (7, 'Accountant', 1, 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (8, 'Case Manager', 1, 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (9, 'Lab Technician', 1, 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (10, 'Super Admin', 1, 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'); -- -------------------------------------------------------- -- -- Table structure for table `diagnosis_categories` -- CREATE TABLE `diagnosis_categories` ( `id` bigint UNSIGNED NOT NULL, `name` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `tenant_id` varchar(255) 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 `doctors` -- CREATE TABLE `doctors` ( `id` bigint UNSIGNED NOT NULL, `user_id` bigint UNSIGNED NOT NULL, `doctor_department_id` bigint UNSIGNED NOT NULL, `specialist` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `appointment_charge` double NOT NULL, `google_json_file_path` longtext COLLATE utf8mb4_unicode_ci, `tenant_id` varchar(255) 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 `doctor_departments` -- CREATE TABLE `doctor_departments` ( `id` bigint UNSIGNED NOT NULL, `title` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `tenant_id` varchar(255) 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 `doctor_holidays` -- CREATE TABLE `doctor_holidays` ( `id` bigint UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `doctor_id` bigint UNSIGNED NOT NULL, `date` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `tenant_id` varchar(255) 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 `doctor_opd_charges` -- CREATE TABLE `doctor_opd_charges` ( `id` bigint UNSIGNED NOT NULL, `doctor_id` bigint UNSIGNED NOT NULL, `standard_charge` double NOT NULL, `tenant_id` varchar(255) 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 `documents` -- CREATE TABLE `documents` ( `id` int UNSIGNED NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `document_type_id` int NOT NULL, `patient_id` int NOT NULL, `uploaded_by` bigint UNSIGNED NOT NULL, `notes` text COLLATE utf8mb4_unicode_ci, `tenant_id` varchar(255) 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 `document_types` -- CREATE TABLE `document_types` ( `id` int UNSIGNED NOT NULL, `name` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL, `tenant_id` varchar(255) 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 `domains` -- CREATE TABLE `domains` ( `id` int UNSIGNED NOT NULL, `domain` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `tenant_id` varchar(255) 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 `employee_payrolls` -- CREATE TABLE `employee_payrolls` ( `id` int UNSIGNED NOT NULL, `sr_no` bigint NOT NULL, `payroll_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `type` int NOT NULL, `owner_id` int NOT NULL, `owner_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `month` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `year` int NOT NULL, `net_salary` double NOT NULL, `status` int NOT NULL, `basic_salary` double NOT NULL, `allowance` double NOT NULL, `deductions` double NOT NULL, `tenant_id` varchar(255) 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 `enquiries` -- CREATE TABLE `enquiries` ( `id` int UNSIGNED NOT NULL, `full_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `contact_no` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` tinyint DEFAULT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `viewed_by` bigint UNSIGNED DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `tenant_id` varchar(255) 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 `event_google_calendars` -- CREATE TABLE `event_google_calendars` ( `id` bigint UNSIGNED NOT NULL, `user_id` bigint UNSIGNED NOT NULL, `google_calendar_list_id` bigint UNSIGNED NOT NULL, `google_calendar_id` varchar(255) 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 `expenses` -- CREATE TABLE `expenses` ( `id` bigint UNSIGNED NOT NULL, `expense_head` int NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `invoice_number` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `date` datetime NOT NULL, `amount` double NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `tenant_id` varchar(255) 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 `exports` -- CREATE TABLE `exports` ( `id` bigint UNSIGNED NOT NULL, `completed_at` timestamp NULL DEFAULT NULL, `file_disk` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `file_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `exporter` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `processed_rows` int UNSIGNED NOT NULL DEFAULT '0', `total_rows` int UNSIGNED NOT NULL, `successful_rows` int UNSIGNED NOT NULL DEFAULT '0', `user_id` bigint 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 `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint UNSIGNED NOT NULL, `uuid` varchar(255) 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 `faqs` -- CREATE TABLE `faqs` ( `id` bigint UNSIGNED NOT NULL, `question` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `answer` 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; -- -- Dumping data for table `faqs` -- INSERT INTO `faqs` (`id`, `question`, `answer`, `created_at`, `updated_at`) VALUES (1, 'Is My Electronic Health Record Kept Private?', 'Health records are kept totally private and we employ robust encryption methods to protect your personal information. You determine who can see the information in your record.', '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (2, 'Can Doctor 24x7 Handle My Emergency Situations?', 'Doctor 24×7 is designed to handle non-emergent medical problems. You should NOT use it if you are experiencing a medical emergency.', '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (3, 'Can I Call Doctor 24x7 Outside Of India?', 'Doctor 24×7 consults are unavailable outside of India. However, if you are travelling outside India, you can use our service from a mobile phone using a SIM card issued in India.', '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (4, 'Is my electronic health record kept private?', 'Health records are kept totally private and we employ robust encryption methods to protect your personal information. You determine who can see the information in your record.', '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (5, 'How much does a consult cost?', 'The cost of a Doctor consult varies, depending on your choice of consulting the 1st available Doctor OR requesting a call back from a specific Doctor.', '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (6, 'Do I Talk to \"real doctors\"?', 'Yes. Doctor 24×7 subscribers only talk to reputed Doctors/Experts attached with top hospitals/private practice who are Licensed practitioners. Each Doctor/Expert on our network is qualified.', '2025-06-04 23:42:26', '2025-06-04 23:42:26'); -- -------------------------------------------------------- -- -- Table structure for table `features` -- CREATE TABLE `features` ( `id` bigint UNSIGNED NOT NULL, `name` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL, `submenu` int DEFAULT '0', `route` longtext COLLATE utf8mb4_unicode_ci, `has_parent` int DEFAULT '0', `is_default` int 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 `features` -- INSERT INTO `features` (`id`, `name`, `submenu`, `route`, `has_parent`, `is_default`, `created_at`, `updated_at`) VALUES (1, 'Appointments', 0, '{\"route_name\":[\"appointments.index\",\"appointments.create\",\"appointments.store\",\"appointments.edit\",\"appointments.update\",\"doctors.list\",\"doctor-schedule-list\",\"get.booking.slot\",\"patient.appointment.update\",\"appointments.show\",\"appointments.destroy\",\"appointments.excel\",\"appointment.status\"]}', 0, 0, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (2, 'Appointment Calendar', 0, '{\"route_name\":[\"appointment-calendars.index\",\"calendar-list\",\"appointment.details\"]}', 1, 0, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (3, 'Blood Banks', 4, '{\"route_name\":[\"blood-banks.index\",\"blood-banks.create\",\"blood-banks.store\",\"blood-banks.edit\",\"blood-banks.update\",\"blood-banks.destroy\",\"blood.banks.excel\"]}', 0, 0, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (4, 'Blood Donors', 0, '{\"route_name\":[\"blood-donors.index\",\"blood-donors.create\",\"blood-donors.store\",\"blood-donors.edit\",\"blood-donors.update\",\"blood-donors.destroy\",\"blood.donors.excel\"]}', 3, 0, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (5, 'Blood Donations', 0, '{\"route_name\":[\"blood-donations.index\",\"blood-donations.create\",\"blood-donations.store\",\"blood-donations.edit\",\"blood-donations.update\",\"blood-donations.destroy\",\"blood.donations.excel\"]}', 3, 0, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (6, 'Blood Issues', 0, '{\"route_name\":[\"blood-issues.index\",\"blood-issues.create\",\"blood-issues.store\",\"blood-issues.edit\",\"blood-issues.update\",\"blood-issues.destroy\",\"blood-issues.list\",\"blood.issues.excel\"]}', 3, 0, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (7, 'Documents', 2, '{\"route_name\":[\"documents.index\",\"documents.create\",\"documents.store\",\"documents.edit\",\"documents.update\",\"documents.destroy\",\"document.download\"]}', 0, 0, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (8, 'Document Types', 0, '{\"route_name\":[\"document-types.index\",\"document-types.create\",\"document-types.store\",\"document-types.edit\",\"document-types.show\",\"document-types.update\",\"document-types.destroy\"]}', 7, 0, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (9, 'Live Consultations', 2, '{\"route_name\":[\"live.consultation.index\",\"live.consultation.create\",\"live.consultation.store\",\"live.consultation.edit\",\"live.consultation.show\",\"live.consultation.update\",\"live.consultation.destroy\",\"live.consultation.list\",\"live.consultation.change.status\",\"live.consultation.get.live.status\",\"zoom.credential\",\"zoom.credential.create\"]}', 0, 0, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (10, 'Live Meetings', 0, '{\"route_name\":[\"live.meeting.index\",\"live.meeting.store\",\"live.meeting.change.status\",\"live.meeting.get.live.status\",\"live.meeting.show\",\"live.meeting.edit\",\"live.meeting.update\",\"live.meeting.destroy\"]}', 9, 0, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (11, 'Inventory', 4, '{\"route_name\":[\"item-categories.index\",\"item-categories.store\",\"item-categories.edit\",\"item-categories.update\",\"item-categories.destroy\"]}', 0, 0, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (12, 'Items', 0, '{\"route_name\":[\"items.index\",\"items.create\",\"items.store\",\"items.edit\",\"items.show\",\"items.update\",\"items.destroy\"]}', 11, 0, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (13, 'Item Stocks', 0, '{\"route_name\":[\"item.stock.index\",\"item.stock.create\",\"item.stock.store\",\"item.stock.edit\",\"item.stock.show\",\"item.stock.update\",\"item.stock.destroy\",\"item.stock.download\",\"items.list\"]}', 11, 0, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (14, 'Issued Items', 0, '{\"route_name\":[\"issued.item.index\",\"issued.item.create\",\"users.list\",\"item.available.qty\",\"return.issued.item\",\"issued.item.store\",\"issued.item.show\",\"issued.item.destroy\"]}', 11, 0, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (15, 'Vaccinations', 2, '{\"route_name\":[\"vaccinated-patients.index\",\"vaccinated-patients.create\",\"vaccinated-patients.store\",\"vaccinated-patients.edit\",\"vaccinated-patients.show\",\"vaccinated-patients.update\",\"vaccinated-patients.destroy\",\"vaccinated-patients.excel\"]}', 0, 0, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (16, 'Vaccination', 0, '{\"route_name\":[\"vaccinations.index\",\"vaccinations.create\",\"vaccinations.store\",\"vaccinations.edit\",\"vaccinations.show\",\"vaccinations.update\",\"vaccinations.destroy\",\"vaccinations.excel\"]}', 15, 0, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (17, 'SMS / Mail', 2, '{\"route_name\":[\"sms.index\",\"sms.store\",\"sms.show\",\"sms.show.modal\",\"sms.destroy\",\"sms.users.lists\"]}', 0, 0, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (18, 'Mail', 0, '{\"route_name\":[\"mail\",\"mail.send\"]}', 17, 0, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (19, 'Radiology', 2, '{\"route_name\":[\"radiology.category.index\",\"radiology.category.create\",\"radiology.category.store\",\"radiology.category.edit\",\"radiology.category.update\",\"radiology.category.destroy\"]}', 0, 0, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (20, 'Radiology Tests', 0, '{\"route_name\":[\"radiology.test.index\",\"radiology.test.create\",\"radiology.test.store\",\"radiology.test.edit\",\"radiology.test.show\",\"radiology.test.show.modal\",\"radiology.test.update\",\"radiology.test.destroy\",\"radiology.test.standard.charge\",\"radiology.tests.excel\"]}', 19, 0, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (21, 'Reports', 4, '{\"route_name\":[\"birth-reports.index\",\"birth-reports.create\",\"birth-reports.store\",\"birth-reports.edit\",\"birth-reports.show\",\"birth-reports.update\",\"birth-reports.destroy\"]}', 0, 0, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (22, 'Death Reports', 0, '{\"route_name\":[\"death-reports.index\",\"death-reports.create\",\"death-reports.store\",\"death-reports.edit\",\"death-reports.show\",\"death-reports.update\",\"death-reports.destroy\"]}', 21, 0, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (23, 'Investigation Reports', 0, '{\"route_name\":[\"investigation-reports.index\",\"investigation-reports.create\",\"investigation-reports.store\",\"investigation-reports.edit\",\"investigation-reports.show\",\"investigation-reports.update\",\"investigation-reports.destroy\",\"investigation.reports.download\"]}', 21, 0, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (24, 'Operation Reports', 0, '{\"route_name\":[\"operation-reports.index\",\"operation-reports.create\",\"operation-reports.store\",\"operation-reports.edit\",\"operation-reports.show\",\"operation-reports.update\",\"operation-reports.destroy\"]}', 21, 0, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (25, 'Pathology', 2, '{\"route_name\":[\"pathology.category.index\",\"pathology.category.create\",\"pathology.category.store\",\"pathology.category.edit\",\"pathology.category.show\",\"pathology.category.update\",\"pathology.category.destroy\"]}', 0, 0, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (26, 'Pathology Tests', 0, '{\"route_name\":[\"pathology.test.index\",\"pathology.test.create\",\"pathology.test.store\",\"pathology.test.edit\",\"pathology.test.show\",\"pathology.test.show.modal\",\"pathology.test.update\",\"pathology.test.destroy\",\"pathology.test.standard.charge\",\"pathology.tests.excel\"]}', 25, 0, '2025-06-04 23:42:26', '2025-06-04 23:42:26'); -- -------------------------------------------------------- -- -- Table structure for table `feature_subscriptionplan` -- CREATE TABLE `feature_subscriptionplan` ( `id` bigint UNSIGNED NOT NULL, `feature_id` bigint UNSIGNED NOT NULL, `subscription_plan_id` bigint UNSIGNED DEFAULT 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 `feature_subscriptionplan` -- INSERT INTO `feature_subscriptionplan` (`id`, `feature_id`, `subscription_plan_id`, `created_at`, `updated_at`) VALUES (1, 1, 1, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (2, 3, 1, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (3, 7, 1, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (4, 9, 1, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (5, 11, 1, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (6, 15, 1, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (7, 17, 1, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (8, 19, 1, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (9, 21, 1, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (10, 25, 1, '2025-06-04 23:42:26', '2025-06-04 23:42:26'); -- -------------------------------------------------------- -- -- Table structure for table `front_services` -- CREATE TABLE `front_services` ( `id` bigint UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `short_description` text COLLATE utf8mb4_unicode_ci NOT NULL, `tenant_id` varchar(255) 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; -- -- Dumping data for table `front_services` -- INSERT INTO `front_services` (`id`, `name`, `short_description`, `tenant_id`, `created_at`, `updated_at`) VALUES (1, 'Cardiology', 'image Cardiology Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor.', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (2, 'Orthopedics', 'image Cardiology Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor.', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (3, 'Pulmonology', 'image Cardiology Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor.', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (4, 'Dental Care', 'image Cardiology Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor.', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (5, 'Medicine', 'image Cardiology Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor.', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (6, 'Ambulance', 'image Cardiology Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor.', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (7, 'Ophthalmology', 'image Cardiology Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor.', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (8, 'Neurology', 'image Cardiology Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor.', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'); -- -------------------------------------------------------- -- -- Table structure for table `front_settings` -- CREATE TABLE `front_settings` ( `id` bigint UNSIGNED NOT NULL, `key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `value` text COLLATE utf8mb4_unicode_ci NOT NULL, `type` text COLLATE utf8mb4_unicode_ci NOT NULL, `tenant_id` varchar(255) 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; -- -- Dumping data for table `front_settings` -- INSERT INTO `front_settings` (`id`, `key`, `value`, `type`, `tenant_id`, `created_at`, `updated_at`) VALUES (1, 'about_us_title', 'About For HMS', '1', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (2, 'about_us_description', 'HMS will teach physicians and nurses from around the world the principles of blood management, as well as how to manage their own blood conservation programs. The hospital was chosen based on the reputation its bloodless program has established in the medical community and because of its nationally recognized results.\n\nWe are a group of creative nerds making awesome stuff for Web and Mobile. We just love to contribute to open source technologies. We always try to build something which helps developers to save their time. so they can spend a bit more time with their friends And family.', '1', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (3, 'about_us_mission', 'We are providing advanced emergency services. We have well-equipped emergency and trauma center with facilities.', '1', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (4, 'about_us_image', 'front-assets/img/default_image.jpg', '1', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (5, 'home_page_experience', '10', '2', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (6, 'home_page_title', 'Find Local Specialists Best Services', '2', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (7, 'home_page_description', 'Our medical clinic provides quality care for the entire family while maintaining a personable atmosphere best services.', '2', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (8, 'home_page_image', 'web_front/images/doctors/doctor.png', '2', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (9, 'terms_conditions', 'terms_conditions', '2', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (10, 'privacy_policy', 'privacy_policy', '2', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (11, 'home_page_certified_doctor_image', 'web_front/images/healthcare-doctor/doctor-1.png', '2', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (12, 'home_page_certified_doctor_text', 'Quality Healthcare', '2', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (13, 'home_page_certified_doctor_title', 'Have Certified and High Quality Doctor For You', '2', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (14, 'home_page_certified_doctor_description', 'Our medical clinic provides quality care for the entire family while maintaining a personable atmosphere best services. Our medical clinic provides quality. Our medical clinic provides quality care for the entire family while maintaining lizam a personable atmosphere best services. Our medical clinic provides.', '2', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (15, 'home_page_box_title', 'Free Consulting', '2', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (16, 'home_page_box_description', 'Proin gravida nibh vel velit auctor aliquet.', '2', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (17, 'home_page_step_1_title', 'Check Doctor Profile', '2', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (18, 'home_page_step_1_description', 'Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin lorem quis bibendum auctor nisi elit.', '2', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (19, 'home_page_step_2_title', 'Request Consulting', '2', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (20, 'home_page_step_2_description', 'Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin lorem quis bibendum auctor nisi elit.', '2', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (21, 'home_page_step_3_title', 'Receive Consulting', '2', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (22, 'home_page_step_3_description', 'Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin lorem quis bibendum auctor nisi elit.', '2', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (23, 'home_page_step_4_title', 'Get Your Solution', '2', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (24, 'home_page_step_4_description', 'Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin lorem quis bibendum auctor nisi elit.', '2', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (25, 'home_page_certified_box_title', 'Certified Doctor', '2', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (26, 'home_page_certified_box_description', 'Proin gravida nibh vel velit auctor aliquet.', '2', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (27, 'appointment_title', 'Contact Now and Get the Best Doctor Service Today', '3', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (28, 'appointment_description', 'Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin lorem quis bibendum auctor nisi elit consequat ipsum nec sagittis.', '3', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'); -- -------------------------------------------------------- -- -- Table structure for table `google_calendar_integrations` -- CREATE TABLE `google_calendar_integrations` ( `id` bigint UNSIGNED NOT NULL, `user_id` bigint UNSIGNED NOT NULL, `access_token` text COLLATE utf8mb4_unicode_ci NOT NULL, `meta` text COLLATE utf8mb4_unicode_ci NOT NULL, `last_used_at` varchar(255) 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 `google_calendar_lists` -- CREATE TABLE `google_calendar_lists` ( `id` bigint UNSIGNED NOT NULL, `user_id` bigint UNSIGNED NOT NULL, `calendar_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `google_calendar_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `meta` 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 `hospital_schedules` -- CREATE TABLE `hospital_schedules` ( `id` bigint UNSIGNED NOT NULL, `day_of_week` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `start_time` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `end_time` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `tenant_id` varchar(255) 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 `hospital_type` -- CREATE TABLE `hospital_type` ( `id` bigint UNSIGNED NOT NULL, `name` varchar(255) 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 `incomes` -- CREATE TABLE `incomes` ( `id` bigint UNSIGNED NOT NULL, `income_head` int NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `invoice_number` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `date` datetime NOT NULL, `amount` double NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `tenant_id` varchar(255) 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 `insurances` -- CREATE TABLE `insurances` ( `id` int UNSIGNED NOT NULL, `name` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL, `service_tax` double NOT NULL, `discount` double DEFAULT NULL, `remark` text COLLATE utf8mb4_unicode_ci, `insurance_no` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `insurance_code` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `hospital_rate` double NOT NULL, `total` double NOT NULL, `status` tinyint(1) NOT NULL, `tenant_id` varchar(255) 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 `insurance_diseases` -- CREATE TABLE `insurance_diseases` ( `id` bigint UNSIGNED NOT NULL, `insurance_id` int UNSIGNED NOT NULL, `disease_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `disease_charge` 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 `investigation_reports` -- CREATE TABLE `investigation_reports` ( `id` int UNSIGNED NOT NULL, `patient_id` int UNSIGNED NOT NULL, `date` datetime NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `doctor_id` bigint UNSIGNED NOT NULL, `status` int NOT NULL, `tenant_id` varchar(255) 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 `invoices` -- CREATE TABLE `invoices` ( `id` int UNSIGNED NOT NULL, `invoice_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `patient_id` int UNSIGNED NOT NULL, `invoice_date` date NOT NULL, `amount` double NOT NULL DEFAULT '0', `discount` double NOT NULL DEFAULT '0', `status` tinyint(1) NOT NULL DEFAULT '0', `tenant_id` varchar(255) 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_items` -- CREATE TABLE `invoice_items` ( `id` int UNSIGNED NOT NULL, `account_id` int UNSIGNED NOT NULL, `invoice_id` int UNSIGNED NOT NULL, `description` text COLLATE utf8mb4_unicode_ci NOT NULL, `quantity` int NOT NULL, `price` 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 `ipd_bills` -- CREATE TABLE `ipd_bills` ( `id` bigint UNSIGNED NOT NULL, `ipd_patient_department_id` int UNSIGNED NOT NULL, `total_charges` double NOT NULL, `total_payments` double NOT NULL, `gross_total` double NOT NULL, `discount_in_percentage` int NOT NULL, `tax_in_percentage` int NOT NULL, `other_charges` double NOT NULL, `net_payable_amount` double NOT NULL, `tenant_id` varchar(255) 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 `ipd_charges` -- CREATE TABLE `ipd_charges` ( `id` int UNSIGNED NOT NULL, `ipd_patient_department_id` int UNSIGNED NOT NULL, `date` date NOT NULL, `charge_type_id` int NOT NULL, `charge_category_id` int UNSIGNED NOT NULL, `charge_id` int UNSIGNED NOT NULL, `standard_charge` double DEFAULT NULL, `applied_charge` double NOT NULL, `tenant_id` varchar(255) 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 `ipd_consultant_registers` -- CREATE TABLE `ipd_consultant_registers` ( `id` int UNSIGNED NOT NULL, `ipd_patient_department_id` int UNSIGNED NOT NULL, `applied_date` datetime NOT NULL, `doctor_id` bigint UNSIGNED NOT NULL, `instruction` text COLLATE utf8mb4_unicode_ci NOT NULL, `instruction_date` date NOT NULL, `tenant_id` varchar(255) 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 `ipd_diagnoses` -- CREATE TABLE `ipd_diagnoses` ( `id` int UNSIGNED NOT NULL, `ipd_patient_department_id` int UNSIGNED NOT NULL, `report_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `report_date` datetime NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `tenant_id` varchar(255) 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 `ipd_patient_departments` -- CREATE TABLE `ipd_patient_departments` ( `id` int UNSIGNED NOT NULL, `patient_id` int UNSIGNED NOT NULL, `ipd_number` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `height` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `weight` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `bp` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `symptoms` text COLLATE utf8mb4_unicode_ci, `notes` text COLLATE utf8mb4_unicode_ci, `admission_date` datetime NOT NULL, `is_discharge` tinyint(1) DEFAULT '0', `case_id` int UNSIGNED NOT NULL, `is_old_patient` tinyint(1) DEFAULT '0', `doctor_id` bigint UNSIGNED DEFAULT NULL, `bed_type_id` int UNSIGNED DEFAULT NULL, `bed_id` int UNSIGNED NOT NULL, `custom_field` longtext COLLATE utf8mb4_unicode_ci, `tenant_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `bill_status` tinyint(1) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `ipd_payments` -- CREATE TABLE `ipd_payments` ( `id` int UNSIGNED NOT NULL, `ipd_patient_department_id` int UNSIGNED NOT NULL, `amount` double NOT NULL, `date` date NOT NULL, `payment_mode` tinyint NOT NULL, `notes` text COLLATE utf8mb4_unicode_ci, `transaction_id` int DEFAULT NULL, `tenant_id` varchar(255) 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 `ipd_prescriptions` -- CREATE TABLE `ipd_prescriptions` ( `id` int UNSIGNED NOT NULL, `ipd_patient_department_id` int UNSIGNED NOT NULL, `header_note` text COLLATE utf8mb4_unicode_ci, `footer_note` text COLLATE utf8mb4_unicode_ci, `tenant_id` varchar(255) 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 `ipd_prescription_items` -- CREATE TABLE `ipd_prescription_items` ( `id` int UNSIGNED NOT NULL, `ipd_prescription_id` int UNSIGNED NOT NULL, `category_id` int UNSIGNED NOT NULL, `medicine_id` int UNSIGNED NOT NULL, `dosage` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `dose_interval` int NOT NULL, `day` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `time` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `instruction` text COLLATE utf8mb4_unicode_ci NOT NULL, `tenant_id` varchar(255) 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 `ipd_timelines` -- CREATE TABLE `ipd_timelines` ( `id` int UNSIGNED NOT NULL, `ipd_patient_department_id` int UNSIGNED NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `date` date NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `visible_to_person` tinyint(1) NOT NULL DEFAULT '1', `tenant_id` varchar(255) 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 `issued_items` -- CREATE TABLE `issued_items` ( `id` int UNSIGNED NOT NULL, `department_id` bigint UNSIGNED NOT NULL, `user_id` bigint UNSIGNED NOT NULL, `issued_by` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `issued_date` date NOT NULL, `return_date` date DEFAULT NULL, `item_category_id` int UNSIGNED NOT NULL, `item_id` int UNSIGNED NOT NULL, `quantity` int NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `status` tinyint(1) DEFAULT '0', `tenant_id` varchar(255) 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 `items` -- CREATE TABLE `items` ( `id` int UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `item_category_id` int UNSIGNED NOT NULL, `unit` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `available_quantity` int NOT NULL DEFAULT '0', `tenant_id` varchar(255) 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 `item_categories` -- CREATE TABLE `item_categories` ( `id` int UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `tenant_id` varchar(255) 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 `item_stocks` -- CREATE TABLE `item_stocks` ( `id` int UNSIGNED NOT NULL, `item_category_id` int UNSIGNED NOT NULL, `item_id` int UNSIGNED NOT NULL, `supplier_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `store_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `quantity` int NOT NULL, `purchase_price` double NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `tenant_id` varchar(255) 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 `jobs` -- CREATE TABLE `jobs` ( `id` bigint UNSIGNED NOT NULL, `queue` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `attempts` tinyint UNSIGNED NOT NULL, `reserved_at` int UNSIGNED DEFAULT NULL, `available_at` int UNSIGNED NOT NULL, `created_at` int UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `job_batches` -- CREATE TABLE `job_batches` ( `id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `total_jobs` int NOT NULL, `pending_jobs` int NOT NULL, `failed_jobs` int NOT NULL, `failed_job_ids` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `options` mediumtext COLLATE utf8mb4_unicode_ci, `cancelled_at` int DEFAULT NULL, `created_at` int NOT NULL, `finished_at` int DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `lab_technicians` -- CREATE TABLE `lab_technicians` ( `id` bigint UNSIGNED NOT NULL, `user_id` bigint UNSIGNED NOT NULL, `tenant_id` varchar(255) 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 `landing_about_us` -- CREATE TABLE `landing_about_us` ( `id` bigint UNSIGNED NOT NULL, `text_main` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `card_img_one` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `card_img_two` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `card_img_three` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `main_img_one` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `main_img_two` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `card_one_text` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `card_two_text` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `card_three_text` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `card_one_text_secondary` varchar(135) COLLATE utf8mb4_unicode_ci NOT NULL, `card_two_text_secondary` varchar(135) COLLATE utf8mb4_unicode_ci NOT NULL, `card_three_text_secondary` varchar(135) 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 `landing_about_us` -- INSERT INTO `landing_about_us` (`id`, `text_main`, `card_img_one`, `card_img_two`, `card_img_three`, `main_img_one`, `main_img_two`, `card_one_text`, `card_two_text`, `card_three_text`, `card_one_text_secondary`, `card_two_text_secondary`, `card_three_text_secondary`, `created_at`, `updated_at`) VALUES (1, 'How It Work', 'http://e-hms-saas-filament.test/uploads/19/about_us.png', 'http://e-hms-saas-filament.test/uploads/20/check-circle-regular.svg', 'http://e-hms-saas-filament.test/uploads/21/credit-card-solid.svg', 'http://e-hms-saas-filament.test/uploads/22/12.png', 'http://e-hms-saas-filament.test/uploads/23/14.png', 'Research', 'HMS Customization', 'Cost Effective', 'HMS specialises in developing innovative, efficient and smart healthcare solutions.', 'We offer complete HMS customization solutions. We are staffed by eLearning experts and we know how to get the most from HMS.', 'HMS not only saves time in the hospital but also is cost-effective in decreasing the number of people working on the Paper work.', '2025-06-04 23:42:26', '2025-06-04 23:42:26'); -- -------------------------------------------------------- -- -- Table structure for table `live_consultations` -- CREATE TABLE `live_consultations` ( `id` bigint UNSIGNED NOT NULL, `doctor_id` bigint UNSIGNED NOT NULL, `patient_id` int UNSIGNED NOT NULL, `consultation_title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `consultation_date` datetime NOT NULL, `host_video` tinyint(1) NOT NULL, `participant_video` tinyint(1) NOT NULL, `consultation_duration_minutes` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `type_number` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_by` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `status` int NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `meeting_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `meta` text COLLATE utf8mb4_unicode_ci, `time_zone` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `tenant_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `platform_type` varchar(255) 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 `live_meetings` -- CREATE TABLE `live_meetings` ( `id` bigint UNSIGNED NOT NULL, `consultation_title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `consultation_date` datetime NOT NULL, `consultation_duration_minutes` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `host_video` tinyint(1) NOT NULL, `participant_video` tinyint(1) NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `created_by` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `meta` text COLLATE utf8mb4_unicode_ci, `meeting_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `time_zone` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `status` int NOT NULL, `tenant_id` varchar(255) 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 `live_meetings_candidates` -- CREATE TABLE `live_meetings_candidates` ( `id` bigint UNSIGNED NOT NULL, `user_id` bigint UNSIGNED NOT NULL, `live_meeting_id` bigint 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 `lunch_breaks` -- CREATE TABLE `lunch_breaks` ( `id` bigint UNSIGNED NOT NULL, `doctor_id` bigint UNSIGNED NOT NULL, `break_from` time NOT NULL, `break_to` time NOT NULL, `every_day` tinyint(1) DEFAULT NULL, `date` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `tenant_id` varchar(255) 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 `mails` -- CREATE TABLE `mails` ( `id` bigint UNSIGNED NOT NULL, `to` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `subject` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `attachments` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint UNSIGNED NOT NULL, `tenant_id` varchar(255) 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 `media` -- CREATE TABLE `media` ( `id` bigint UNSIGNED NOT NULL, `model_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `model_id` bigint UNSIGNED NOT NULL, `collection_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `file_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `mime_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `disk` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `size` bigint 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 UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `conversions_disk` varchar(255) 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; -- -- Dumping data for table `media` -- INSERT INTO `media` (`id`, `model_type`, `model_id`, `collection_name`, `name`, `file_name`, `mime_type`, `disk`, `size`, `manipulations`, `custom_properties`, `responsive_images`, `order_column`, `created_at`, `updated_at`, `conversions_disk`, `uuid`, `generated_conversions`) VALUES (1, 'App\\Models\\SuperAdminSetting', 31, 'super_admin_settings', 'hms-saas-logo', 'hms-saas-logo.png', 'image/png', 'public', 2349, '[]', '[]', '[]', 1, '2025-06-04 23:42:25', '2025-06-04 23:42:25', 'public', '1b155f58-191f-4fb8-b405-5d379a09288b', '[]'), (2, 'App\\Models\\SuperAdminSetting', 32, 'super_admin_settings', 'hms-saas-favicon', 'hms-saas-favicon.ico', 'image/vnd.microsoft.icon', 'public', 4958, '[]', '[]', '[]', 1, '2025-06-04 23:42:25', '2025-06-04 23:42:25', 'public', '0d65b09d-7a4b-48e5-a9ea-d1e6a95e6f8c', '[]'), (3, 'App\\Models\\SectionOne', 1, 'section_one', 'section_one', 'section_one.png', 'image/png', 'public', 265302, '[]', '[]', '[]', 1, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', '788f978d-8cee-4661-9d69-38a0ead13d14', '[]'), (4, 'App\\Models\\SectionTwo', 1, 'section_two_card_one_image', 'appointment_schedule', 'appointment_schedule.png', 'image/png', 'public', 80890, '[]', '[]', '[]', 1, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', 'b1be7d13-9c15-43b2-936d-cd527b3210be', '[]'), (5, 'App\\Models\\SectionTwo', 1, 'section_two_card_two_image', 'ipd_manage', 'ipd_manage.png', 'image/png', 'public', 152136, '[]', '[]', '[]', 2, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', 'bd1f3c39-5350-4836-b4b4-d02873df4ee0', '[]'), (6, 'App\\Models\\SectionTwo', 1, 'section_two_card_third_image', 'opd_manage', 'opd_manage.png', 'image/png', 'public', 143712, '[]', '[]', '[]', 3, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', 'b9878adb-de7f-49bf-8aa9-1e51478489ea', '[]'), (7, 'App\\Models\\SectionThree', 1, 'section_three', 'section_three_sass', 'section_three_sass.png', 'image/png', 'public', 26353, '[]', '[]', '[]', 1, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', 'f75b03eb-143b-40f5-8f3e-2d90ddc865fd', '[]'), (8, 'App\\Models\\SectionFour', 1, 'section_four_card_one_path', 'bulit_seo', 'bulit_seo.png', 'image/png', 'public', 2257, '[]', '[]', '[]', 1, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', 'ee369d3e-2f28-4a57-ab1e-bc5fec1f20f4', '[]'), (9, 'App\\Models\\SectionFour', 1, 'section_four_card_two_path', 'hospital_profile', 'hospital_profile.png', 'image/png', 'public', 1182, '[]', '[]', '[]', 2, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', '5a9403b3-ebb6-4e8e-b1ff-22c3518f0f35', '[]'), (10, 'App\\Models\\SectionFour', 1, 'section_four_card_three_path', 'online_appointment', 'online_appointment.png', 'image/png', 'public', 1625, '[]', '[]', '[]', 3, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', '22ed4d71-a131-4e40-90f6-45225ae09385', '[]'), (11, 'App\\Models\\SectionFour', 1, 'section_four_card_four_path', 'articles', 'articles.png', 'image/png', 'public', 744, '[]', '[]', '[]', 4, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', 'cff05dd0-6a0e-461c-baa5-9838088248f2', '[]'), (12, 'App\\Models\\SectionFour', 1, 'section_four_card_five_path', 'easy_to_use', 'easy_to_use.png', 'image/png', 'public', 1489, '[]', '[]', '[]', 5, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', 'ba32d961-b4e6-4834-b729-4da6ab78d1cc', '[]'), (13, 'App\\Models\\SectionFour', 1, 'section_four_card_six_path', 'support', 'support.jpeg', 'image/jpeg', 'public', 7572, '[]', '[]', '[]', 6, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', '34900c68-dd6e-4c8a-8ffd-c0d05414e828', '[]'), (14, 'App\\Models\\SectionFive', 1, 'section_five_main_img_path', '07', '07.png', 'image/png', 'public', 61097, '[]', '[]', '[]', 1, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', 'cd767c86-c392-4605-a923-bd5594fd5b72', '[]'), (15, 'App\\Models\\SectionFive', 1, 'section_five_card_one_path', 'card_img_url_one', 'card_img_url_one.png', 'image/png', 'public', 1629, '[]', '[]', '[]', 2, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', '848f5c7e-2c92-446c-89f7-eaa9a5f172cb', '[]'), (16, 'App\\Models\\SectionFive', 1, 'section_five_card_two_path', 'card_img_url_two', 'card_img_url_two.png', 'image/png', 'public', 1567, '[]', '[]', '[]', 3, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', '7a9b29bc-6345-4e71-82cc-42637a9df2ab', '[]'), (17, 'App\\Models\\SectionFive', 1, 'section_five_card_three_path', 'card_img_url_three', 'card_img_url_three.png', 'image/png', 'public', 1510, '[]', '[]', '[]', 4, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', '21c0fb22-7e76-426f-93e4-8ae4aed82f44', '[]'), (18, 'App\\Models\\SectionFive', 1, 'section_five_card_four_path', 'card_imf_url_four', 'card_imf_url_four.png', 'image/png', 'public', 1967, '[]', '[]', '[]', 5, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', 'd29d9ce9-07b9-484e-be5f-58892eef3c43', '[]'), (19, 'App\\Models\\LandingAboutUs', 1, 'landing_about_us_card_img_one', 'about_us', 'about_us.png', 'image/png', 'public', 312, '[]', '[]', '[]', 1, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', '11065cf2-2551-45c5-870f-57a0c6735ffe', '[]'), (20, 'App\\Models\\LandingAboutUs', 1, 'landing_about_us_card_img_two', 'check-circle-regular', 'check-circle-regular.svg', 'image/svg+xml', 'public', 741, '[]', '[]', '[]', 2, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', 'cd4ae4d8-dfce-416d-bd4b-325c5e77d15e', '[]'), (21, 'App\\Models\\LandingAboutUs', 1, 'landing_about_us_card_img_three', 'credit-card-solid', 'credit-card-solid.svg', 'image/svg+xml', 'public', 561, '[]', '[]', '[]', 3, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', '9086dac9-d120-40f5-b7d5-9d419b068e1a', '[]'), (22, 'App\\Models\\LandingAboutUs', 1, 'landing_about_us_main_img_one', '12', '12.png', 'image/png', 'public', 27209, '[]', '[]', '[]', 4, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', 'bb2de018-553b-43f8-874c-23699be52b41', '[]'), (23, 'App\\Models\\LandingAboutUs', 1, 'landing_about_us_main_img_two', '14', '14.png', 'image/png', 'public', 49699, '[]', '[]', '[]', 5, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', 'dcb2fb85-439e-48e2-9e0d-934e961dcb29', '[]'), (24, 'App\\Models\\ServiceSlider', 1, 'service_slider', 'treatment', 'treatment.png', 'image/png', 'public', 1820, '[]', '[]', '[]', 1, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', 'f8ceaf43-e81e-461d-b6b3-bb2223f0143f', '[]'), (25, 'App\\Models\\ServiceSlider', 2, 'service_slider', 'diagnostics', 'diagnostics.png', 'image/png', 'public', 2964, '[]', '[]', '[]', 1, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', '612fd493-5291-4b1a-a0d3-14527b92c3aa', '[]'), (26, 'App\\Models\\ServiceSlider', 3, 'service_slider', 'emergency', 'emergency.png', 'image/png', 'public', 1959, '[]', '[]', '[]', 1, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', 'ef66dd64-5623-4a06-b74e-aa93662f3464', '[]'), (27, 'App\\Models\\ServiceSlider', 4, 'service_slider', 'qualified_doctors', 'qualified_doctors.png', 'image/png', 'public', 2039, '[]', '[]', '[]', 1, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', '4b7e1dd0-3dff-4906-b804-781b3bdc6a29', '[]'), (28, 'App\\Models\\ServiceSlider', 5, 'service_slider', 'anasthesia', 'anasthesia.jpeg', 'image/jpeg', 'public', 14197, '[]', '[]', '[]', 1, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', 'd9ef245d-44ac-4abc-a383-319e69b508a7', '[]'), (29, 'App\\Models\\ServiceSlider', 6, 'service_slider', 'injection', 'injection.png', 'image/png', 'public', 2230, '[]', '[]', '[]', 1, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', 'ab5b0c49-c46a-4d7c-b316-df9960438476', '[]'), (30, 'App\\Models\\ServiceSlider', 7, 'service_slider', 'slider_img_seven', 'slider_img_seven.png', 'image/png', 'public', 3154, '[]', '[]', '[]', 1, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', '62bd69a2-de5d-4b04-b7d1-a34e7ff1e054', '[]'), (31, 'App\\Models\\AdminTestimonial', 1, 'testimonials', 'thomas-james', 'thomas-james.png', 'image/png', 'public', 120110, '[]', '[]', '[]', 1, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', 'b4e88f01-f172-4d81-b9a2-feedf8131102', '[]'), (32, 'App\\Models\\AdminTestimonial', 2, 'testimonials', 'thomas-james', 'thomas-james.png', 'image/png', 'public', 120110, '[]', '[]', '[]', 1, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', '34be4a48-f17e-4d14-85b7-be0b5fa0f805', '[]'), (33, 'App\\Models\\AdminTestimonial', 3, 'testimonials', 'thomas-james', 'thomas-james.png', 'image/png', 'public', 120110, '[]', '[]', '[]', 1, '2025-06-04 23:42:26', '2025-06-04 23:42:26', 'public', '5b7d6221-8d2d-4dae-86b8-a0998d3e9ac7', '[]'); -- -------------------------------------------------------- -- -- Table structure for table `medicines` -- CREATE TABLE `medicines` ( `id` int UNSIGNED NOT NULL, `category_id` int UNSIGNED DEFAULT NULL, `brand_id` int UNSIGNED DEFAULT NULL, `name` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL, `selling_price` double NOT NULL, `buying_price` double NOT NULL, `quantity` int NOT NULL, `available_quantity` int NOT NULL, `salt_composition` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `side_effects` text COLLATE utf8mb4_unicode_ci, `tenant_id` varchar(255) 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 `medicine_bills` -- CREATE TABLE `medicine_bills` ( `id` bigint UNSIGNED NOT NULL, `tenant_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `bill_number` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `patient_id` int UNSIGNED NOT NULL, `doctor_id` int UNSIGNED DEFAULT NULL, `model_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `model_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `discount` double NOT NULL, `net_amount` double NOT NULL, `total` double NOT NULL, `tax_amount` double NOT NULL, `payment_status` int NOT NULL, `payment_type` int NOT NULL, `note` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `bill_date` datetime 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 `migrations` -- CREATE TABLE `migrations` ( `id` int UNSIGNED NOT NULL, `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '0001_01_01_000001_create_cache_table', 1), (2, '2014_09_15_000010_create_tenants_table', 1), (3, '2014_09_15_000020_create_domains_table', 1), (4, '2014_10_12_000000_create_users_table', 1), (5, '2014_10_12_063910_create_users_tenant_table', 1), (6, '2014_10_12_100000_create_password_resets_table', 1), (7, '2019_08_19_000000_create_failed_jobs_table', 1), (8, '2020_02_06_031618_create_categories_table', 1), (9, '2020_02_12_053840_create_doctor_departments_table', 1), (10, '2020_02_12_053932_create_departments_table', 1), (11, '2020_02_13_042835_create_brands_table', 1), (12, '2020_02_13_053840_create_doctors_table', 1), (13, '2020_02_13_054103_create_patients_table', 1), (14, '2020_02_13_094724_create_bills_table', 1), (15, '2020_02_13_095024_create_medicines_table', 1), (16, '2020_02_13_095125_create_bill_items_table', 1), (17, '2020_02_13_111857_create_nurses_table', 1), (18, '2020_02_13_125601_create_addresses_table', 1), (19, '2020_02_13_141104_create_media_table', 1), (20, '2020_02_14_051650_create_lab_technicians_table', 1), (21, '2020_02_14_055353_create_appointments_table', 1), (22, '2020_02_14_091441_create_receptionists_table', 1), (23, '2020_02_14_093246_create_pharmacists_table', 1), (24, '2020_02_17_053450_create_accountants_table', 1), (25, '2020_02_17_080856_create_bed_types_table', 1), (26, '2020_02_17_092326_create_blood_banks_table', 1), (27, '2020_02_17_105627_create_beds_table', 1), (28, '2020_02_17_110620_create_blood_donors_table', 1), (29, '2020_02_17_135716_create_permission_tables', 1), (30, '2020_02_18_042327_create_notice_boards_table', 1), (31, '2020_02_18_042442_create_document_types_table', 1), (32, '2020_02_18_060222_create_patient_cases_table', 1), (33, '2020_02_18_060223_create_operation_reports_table', 1), (34, '2020_02_18_064953_create_bed_assigns_table', 1), (35, '2020_02_18_092202_create_documents_table', 1), (36, '2020_02_18_094758_create_birth_reports_table', 1), (37, '2020_02_18_111020_create_death_reports_table', 1), (38, '2020_02_19_080336_create_employee_payrolls_table', 1), (39, '2020_02_19_134502_create_settings_table', 1), (40, '2020_02_21_090236_create_investigation_reports_table', 1), (41, '2020_02_21_095439_create_accounts_table', 1), (42, '2020_02_22_070658_create_payments_table', 1), (43, '2020_02_22_090112_create_insurances_table', 1), (44, '2020_02_22_091537_create_insurance_disease_table', 1), (45, '2020_02_24_055136_create_invoices_table', 1), (46, '2020_02_24_055518_create_schedules_table', 1), (47, '2020_02_24_055702_create_invoice_items_table', 1), (48, '2020_02_25_105042_create_services_table', 1), (49, '2020_02_25_131030_create_packages_table', 1), (50, '2020_02_25_131108_create_package_services_table', 1), (51, '2020_02_27_120948_create_patient_admissions_table', 1), (52, '2020_02_28_031410_create_case_handlers_table', 1), (53, '2020_03_02_043813_create_advanced_payments_table', 1), (54, '2020_03_02_065845_add_patient_admission_id_to_bills', 1), (55, '2020_03_03_062243_add_patient_id_to_bills', 1), (56, '2020_03_03_113334_create_schedule_day_table', 1), (57, '2020_03_26_052336_create_ambulances_table', 1), (58, '2020_03_26_081157_create_mails_table', 1), (59, '2020_03_27_061641_create_enquiries_table', 1), (60, '2020_03_27_063148_create_ambulance_calls_table', 1), (61, '2020_03_31_122219_create_prescriptions_table', 1), (62, '2020_04_11_052629_create_charge_categories_table', 1), (63, '2020_04_11_053929_create_pathology_categories_table', 1), (64, '2020_04_11_070859_create_radiology_categories_table', 1), (65, '2020_04_11_090903_create_charges_table', 1), (66, '2020_04_13_050643_create_radiology_tests_table', 1), (67, '2020_04_14_093339_create_pathology_tests_table', 1), (68, '2020_04_24_111205_create_doctor_opd_charge_table', 1), (69, '2020_04_28_094118_create_expenses_table', 1), (70, '2020_05_01_055137_create_incomes_table', 1), (71, '2020_05_11_083050_add_notes_documents_table', 1), (72, '2020_05_12_075825_create_sms_table', 1), (73, '2020_06_22_071531_add_index_to_accounts_table', 1), (74, '2020_06_22_071943_add_index_to_doctor_opd_charges_table', 1), (75, '2020_06_22_072921_add_index_to_bed_assigns_table', 1), (76, '2020_06_22_073042_add_index_to_medicines_table', 1), (77, '2020_06_22_073457_add_index_to_employee_payrolls_table', 1), (78, '2020_06_22_074937_add_index_to_notice_boards_table', 1), (79, '2020_06_22_075222_add_index_to_blood_donors_table', 1), (80, '2020_06_22_075359_add_index_to_packages_table', 1), (81, '2020_06_22_075506_add_index_to_bed_types_table', 1), (82, '2020_06_22_075725_add_index_to_services_table', 1), (83, '2020_06_22_080944_add_index_to_invoices_table', 1), (84, '2020_06_22_081601_add_index_to_payments_table', 1), (85, '2020_06_22_081802_add_index_to_advanced_payments_table', 1), (86, '2020_06_22_081909_add_index_to_bills_table', 1), (87, '2020_06_22_082548_add_index_to_beds_table', 1), (88, '2020_06_22_082942_add_index_to_blood_banks_table', 1), (89, '2020_06_22_083511_add_index_to_users_table', 1), (90, '2020_06_22_084750_add_index_to_patient_cases_table', 1), (91, '2020_06_22_084912_add_index_to_patient_admissions_table', 1), (92, '2020_06_22_085036_add_index_to_document_types_table', 1), (93, '2020_06_22_085128_add_index_to_insurances_table', 1), (94, '2020_06_22_085317_add_index_to_ambulances_table', 1), (95, '2020_06_22_090509_add_index_to_ambulance_calls_table', 1), (96, '2020_06_22_091253_add_index_to_doctor_departments_table', 1), (97, '2020_06_22_091455_add_index_to_appointments_table', 1), (98, '2020_06_22_091617_add_index_to_birth_reports_table', 1), (99, '2020_06_22_091632_add_index_to_death_reports_table', 1), (100, '2020_06_22_091651_add_index_to_investigation_reports_table', 1), (101, '2020_06_22_091828_add_index_to_operation_reports_table', 1), (102, '2020_06_22_092018_add_index_to_categories_table', 1), (103, '2020_06_22_092149_add_index_to_brands_table', 1), (104, '2020_06_22_092324_add_index_to_pathology_tests_table', 1), (105, '2020_06_22_092338_add_index_to_pathology_categories_table', 1), (106, '2020_06_22_092347_add_index_to_radiology_tests_table', 1), (107, '2020_06_22_092357_add_index_to_radiology_categories_table', 1), (108, '2020_06_22_092651_add_index_to_expenses_table', 1), (109, '2020_06_22_092702_add_index_to_incomes_table', 1), (110, '2020_06_22_092855_add_index_to_charges_table', 1), (111, '2020_06_22_092905_add_index_to_charge_categories_table', 1), (112, '2020_06_22_093234_add_index_to_enquiries_table', 1), (113, '2020_06_24_044648_create_diagnosis_categories_table', 1), (114, '2020_06_25_080242_create_patient_diagnosis_tests_table', 1), (115, '2020_06_26_054352_create_patient_diagnosis_properties_table', 1), (116, '2020_07_15_044653_remove_serial_visibility_from_schedules_table', 1), (117, '2020_07_15_121336_change_ambulances_table_column', 1), (118, '2020_07_22_052934_change_bed_assigns_table_column', 1), (119, '2020_07_29_095430_change_invoice_items_table_column', 1), (120, '2020_08_26_081235_create_item_categories_table', 1), (121, '2020_08_26_101134_create_items_table', 1), (122, '2020_08_26_125032_create_item_stocks_table', 1), (123, '2020_08_27_141547_create_issued_items_table', 1), (124, '2020_09_08_064222_create_ipd_patient_departments_table', 1), (125, '2020_09_08_114627_create_ipd_diagnoses_table', 1), (126, '2020_09_09_065624_create_ipd_consultant_registers_table', 1), (127, '2020_09_09_135505_create_ipd_charges_table', 1), (128, '2020_09_10_112306_create_ipd_prescriptions_table', 1), (129, '2020_09_10_114203_create_ipd_prescription_items_table', 1), (130, '2020_09_11_045308_create_modules_table', 1), (131, '2020_09_12_050715_create_ipd_payments_table', 1), (132, '2020_09_12_071821_create_ipd_timelines_table', 1), (133, '2020_09_12_103003_create_ipd_bills_table', 1), (134, '2020_09_14_083759_create_opd_patient_departments_table', 1), (135, '2020_09_14_144731_add_ipd_patient_department_id_to_bed_assigns_table', 1), (136, '2020_09_15_064044_create_transactions_table', 1), (137, '2020_09_16_103204_create_opd_diagnoses_table', 1), (138, '2020_09_16_114031_create_opd_timelines_table', 1), (139, '2020_09_23_045100_change_patient_diagnosis_properties_table', 1), (140, '2020_09_24_053229_add_ipd_bill_column_in_ipd_patient_departments_table', 1), (141, '2020_10_09_085838_create_call_logs_table', 1), (142, '2020_10_12_125133_create_visitors_table', 1), (143, '2020_10_14_044134_create_postals_table', 1), (144, '2020_10_30_043500_add_route_in_modules_table', 1), (145, '2020_10_31_062448_add_complete_in_appointments_table', 1), (146, '2020_11_02_050736_create_testimonials_table', 1), (147, '2020_11_07_121633_add_region_code_in_sms_table', 1), (148, '2020_11_19_093810_create_blood_donations_table', 1), (149, '2020_11_20_113830_create_blood_issues_table', 1), (150, '2020_11_24_131253_create_notifications_table', 1), (151, '2020_12_28_131351_create_live_consultations_table', 1), (152, '2020_12_31_062506_create_live_meetings_table', 1), (153, '2020_12_31_091242_create_live_meetings_candidates_table', 1), (154, '2021_01_05_100425_create_user_zoom_credential_table', 1), (155, '2021_01_06_105407_add_metting_id_to_live_meetings_table', 1), (156, '2021_02_23_065200_create_vaccinations_table', 1), (157, '2021_02_23_065252_create_vaccinated_patients_table', 1), (158, '2021_04_05_085646_create_front_settings_table', 1), (159, '2021_05_10_000000_add_uuid_to_failed_jobs_table', 1), (160, '2021_05_29_103036_add_conversions_disk_column_in_media_table', 1), (161, '2021_06_07_104022_change_patient_foreign_key_type_in_appointments_table', 1), (162, '2021_06_08_073918_change_department_foreign_key_in_appointments_table', 1), (163, '2021_06_21_082754_update_amount_datatype_in_bills_table', 1), (164, '2021_06_21_082845_update_amount_datatype_in_bill_items_table', 1), (165, '2021_11_11_061443_create_front_services_table', 1), (166, '2021_11_12_100750_create_hospital_schedules_table', 1), (167, '2021_11_12_105805_add_social_details_in_users_table', 1), (168, '2021_11_20_071507_create_subscription_plans_table', 1), (169, '2021_11_23_090824_create_subscriptions_table', 1), (170, '2021_11_24_102200_create_section_ones_table', 1), (171, '2021_11_25_102200_create_section_twos_table', 1), (172, '2021_11_26_085330_create_super_admin_settings_table', 1), (173, '2021_11_26_102200_create_section_threes_table', 1), (174, '2021_11_26_102202_create_section_fours_table', 1), (175, '2021_11_26_102203_create_section_fives_table', 1), (176, '2021_11_26_131611_create_subscribes_table', 1), (177, '2021_11_26_131613_create_landing_about_us_table', 1), (178, '2021_11_26_131615_create_super_admin_enquiries_table', 1), (179, '2021_11_30_043411_create_service_sliders_table', 1), (180, '2021_11_30_132704_create_admin_testimonials_table', 1), (181, '2021_12_01_094113_create_faqs_table', 1), (182, '2021_12_08_084047_create_features_table', 1), (183, '2021_12_08_105802_create_feature_subscriptionplan_table', 1), (184, '2022_01_24_065736_change_domain_field_in_domains_table', 1), (185, '2022_01_24_065936_change_route_field_in_features_table', 1), (186, '2022_02_22_072906_add_theme_mode_to_users_table', 1), (187, '2022_03_26_051413_change_transaction_id_in_transactions', 1), (188, '2022_03_28_092201_add_is_manual_payment_in_transactions', 1), (189, '2022_04_09_063627_change_doctor_foreign_in_operation_reports_table', 1), (190, '2022_05_12_103141_change_length_email_in_password_resets', 1), (191, '2022_05_12_103950_change_length_name_in_accounts', 1), (192, '2022_05_12_104835_change_length_name_in_medicines', 1), (193, '2022_05_12_105027_change_length_name_in_packages', 1), (194, '2022_05_12_105131_change_length_title_in_bed_types', 1), (195, '2022_05_12_105228_change_length_name_in_services', 1), (196, '2022_05_12_105423_change_length_first_name_in_users', 1), (197, '2022_05_12_105529_change_length_name_in_document_types', 1), (198, '2022_05_12_105616_change_length_name_in_insurances', 1), (199, '2022_05_12_105820_change_length_vehicle_number_in_ambulances', 1), (200, '2022_05_12_110013_change_length_title_in_doctor_departments', 1), (201, '2022_05_12_110054_change_length_name_in_categories', 1), (202, '2022_05_12_110121_change_length_name_in_brands', 1), (203, '2022_05_12_110159_change_length_test_name_in_pathology_tests', 1), (204, '2022_05_12_110234_change_length_name_in_pathology_categories', 1), (205, '2022_05_12_110310_change_length_test_name_in_radiology_tests', 1), (206, '2022_05_12_110359_change_length_name_in_radiology_categories', 1), (207, '2022_05_12_110441_change_length_code_in_charges', 1), (208, '2022_05_12_110518_change_length_name_in_charge_categories', 1), (209, '2022_05_12_110625_change_length_name_in_diagnosis_categories', 1), (210, '2022_05_12_111216_change_length_status_transaction_id_in_transactions', 1), (211, '2022_05_12_111540_change_length_name_in_features', 1), (212, '2022_05_16_111533_add_default_length_in_table', 1), (213, '2022_07_27_115635_add_sms_limit_to_subscription_plans_table', 1), (214, '2022_07_28_070949_add_sms_limit_to_subscriptions_table', 1), (215, '2022_08_01_163441_create_add_prescription_fields_table', 1), (216, '2022_08_02_164201_create_prescriptions_medicines_table', 1), (217, '2022_08_26_225039_change_charge_standard_charge_column', 1), (218, '2022_08_29_114641_change_field_in_blood_issues', 1), (219, '2022_08_31_183659_add_city_field_in_user_table', 1), (220, '2022_08_31_185620_create_hospital_type_table', 1), (221, '2022_09_06_185142_add_foreign_key_at_hospital_type', 1), (222, '2022_09_20_044627_run_default_country_code_seeder', 1), (223, '2022_10_08_174423_create_currency_settings_table', 1), (224, '2022_10_10_175359_create_default_currency_seeder_migration', 1), (225, '2022_10_14_071405_super_admin_currency_settings', 1), (226, '2022_10_15_035849_super_admin_currency_seeder_migration', 1), (227, '2022_10_17_095822_add_default_field_seeder', 1), (228, '2022_11_04_180329_remove_unique_constraint_from_item_category', 1), (229, '2023_01_31_125406_change_datatype_meta_field_to_transactions_table', 1), (230, '2023_02_09_042947_change_datatype_price_field_to_subscription_plans_table', 1), (231, '2023_04_10_082532_seed_default_currency_setting_seeder', 1), (232, '2023_06_17_043439_super_admin_google_recaptcha_setting', 1), (233, '2023_06_26_070547_create_used_medicines_table', 1), (234, '2023_06_26_094015_add_quantity_field_in_medicines_table', 1), (235, '2023_06_27_093345_create_purchase_medicine_table', 1), (236, '2023_06_27_105310_create_purchased_medicines_table', 1), (237, '2023_07_05_044449_create_medicine_bill_table', 1), (238, '2023_07_05_054627_create_sale_medicines_table', 1), (239, '2023_07_06_093935_add_dose_interval_field_in_prescription_table', 1), (240, '2023_07_12_130339_add_dose_interval_field_in_ipd_prescription_items_table', 1), (241, '2023_07_26_060713_change_price_precision_medicine_bill_table', 1), (242, '2023_08_17_000000_rename_password_resets_table', 1), (243, '2023_08_24_064315_create_zoom_o_auth_credentials_table', 1), (244, '2023_08_29_100628_add_charge_id_in_radiology_tests_table', 1), (245, '2023_09_30_060447_create_pathology_units_table', 1), (246, '2023_09_30_065818_create_pathology_parameters_table', 1), (247, '2023_10_04_113522_create_pathology_parameter_items_table', 1), (248, '2023_10_09_112844_create_doctor_holidays_table', 1), (249, '2023_10_09_113239_create_lunch_breaks_table', 1), (250, '2023_10_26_044303_create_smart_patient_cards_table', 1), (251, '2023_10_27_092821_add_template_id_to_patients_table', 1), (252, '2023_10_30_100313_add_patient_unique_id_to_patients_table', 1), (253, '2023_11_02_090934_add_description_field_to_doctors_table', 1), (254, '2023_11_20_060736_add_default_language_field_to_settings', 1), (255, '2023_11_23_064532_add_report_generated_to_opd_diagnosis_table', 1), (256, '2023_11_24_105520_add_status_in_bills_table', 1), (257, '2023_11_27_111203_create_bill_transactions_table', 1), (258, '2023_12_14_074029_add_notes_field_to_transactions_table', 1), (259, '2023_12_22_105204_add_discharge_field_to_ipd_patient_departments_table', 1), (260, '2023_12_28_083507_create_custom_fields_table', 1), (261, '2023_12_28_085923_add_custom_field_to_appointments_table', 1), (262, '2023_12_28_090429_add_custom_field_to_ipd_patient_departments_table', 1), (263, '2023_12_28_090546_add_custom_field_to_opd_patient_departments_table', 1), (264, '2023_12_28_091156_add_custom_field_to_patients_table', 1), (265, '2024_01_04_090911_add_region_code_to_users_table', 1), (266, '2024_01_05_100018_create_ipd_patient_department_seeder_table', 1), (267, '2024_01_25_040328_change_token_filed_in_password_reset_tokens_table', 1), (268, '2024_01_26_073439_add_appointment_charge_field_to_doctors_table', 1), (269, '2024_01_29_125535_create_appointment_transactions_table', 1), (270, '2024_02_01_064646_add_payment_status_in_appointments_table', 1), (271, '2024_02_05_102546_update_default_bed_status_seeder', 1), (272, '2024_02_08_125631_create_google_calendar_integrations_table', 1), (273, '2024_02_09_035534_create_google_calendar_lists_table', 1), (274, '2024_02_12_052500_create_event_google_calendars_table', 1), (275, '2024_02_12_092046_add_column_in_live_consultations_table', 1), (276, '2024_02_13_064535_create_user_google_event_schedules_table', 1), (277, '2024_02_20_083631_add_manual_instruction_in_setting_seeder', 1), (278, '2024_02_26_090956_add_patient_id_to_pathology_tests_table', 1), (279, '2024_02_28_101005_create_setting_table_payment_getaway_field_seeder_table', 1), (280, '2024_03_01_110117_create_opd_prescriptions_table', 1), (281, '2024_03_06_051455_create_opd_prescription_items_table', 1), (282, '2024_03_26_054916_add_payment_status_field_in_purchase_medicine_table', 1), (283, '2024_04_01_044115_create_super_admin_flutterwave_credential_seeder_table', 1), (284, '2024_05_15_121235_change_custom_field_to_patients_table', 1), (285, '2024_05_15_121352_change_custom_field_to_appointments_table', 1), (286, '2024_05_15_121400_change_custom_field_to_ipd_patient_departments_table', 1), (287, '2024_05_15_121406_change_custom_field_to_opd_patient_departments_table', 1), (288, '2024_05_20_055209_change_expiry_date_field_type_in_sale_medicines_table', 1), (289, '2024_05_30_070256_add_google_json_file_path_field_to_doctors_table', 1), (290, '2024_05_31_061137_change_price_datatype_in_bill_items', 1), (291, '2024_05_31_064037_change_amount_datatype_in_bill_transactions', 1), (292, '2024_05_31_064251_change_charge_datatype_in_beds', 1), (293, '2024_05_31_071230_change_standard_charge_datatype_in_charges', 1), (294, '2024_05_31_101858_change_standard_charge_datatype_in_pathology_tests_table', 1), (295, '2024_05_31_102407_change_standard_charge_datatype_in_radiology_tests_table', 1), (296, '2024_05_31_103537_change_rate_datatype_in_services_table', 1), (297, '2024_06_01_035510_change_standard_and_applied_charge_datatype_in_ipd_charges', 1), (298, '2024_06_01_040041_change_amount_datatype_in_ipd_payments', 1), (299, '2024_06_01_042014_change_amount_datatype_in_ipd_bills', 1), (300, '2024_07_24_114525_change_appointment_charge_datatype_in_doctors_table', 1), (301, '2024_09_23_112650_create_job_batches_table', 1), (302, '2024_09_23_115933_create_exports_table', 1), (303, '2024_09_23_120205_create_jobs_table', 1), (304, '2024_12_16_105500_create_sessions_table', 1), (305, '2025_01_06_075058_modify_hospital_name_nullable_in_users_table', 1), (306, '2025_01_16_125952_add_patient_id_to_radiology_tests_table', 1), (307, '2025_02_07_140538_add_is_hidden_to_modules_table', 1), (308, '2025_02_11_091416_change_price_data_type_in_subscriptions_table', 1), (309, '2025_02_12_144635_modify_paypal_model_key_to_super_admin_settings_table', 1), (310, '2025_03_10_074819_update_smart_patient_cards_table', 1), (311, '2025_03_28_035116_change_datatype_amount_field_to_transactions_table', 1), (312, '2025_04_01_063248_create_patient_queues_table', 1), (313, '2025_05_20_044247_create_odontograms_table', 1), (314, '2025_05_21_091922_seed_new_default_module_seeder', 1), (315, '2025_06_04_044917_seed_odontogram_seeder', 1); -- -------------------------------------------------------- -- -- Table structure for table `model_has_permissions` -- CREATE TABLE `model_has_permissions` ( `permission_id` bigint UNSIGNED NOT NULL, `model_type` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL, `model_id` bigint UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `model_has_roles` -- CREATE TABLE `model_has_roles` ( `role_id` bigint UNSIGNED NOT NULL, `model_type` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL, `model_id` bigint 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 (10, 'App\\Models\\User', 1); -- -------------------------------------------------------- -- -- Table structure for table `modules` -- CREATE TABLE `modules` ( `id` bigint UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `is_hidden` tinyint(1) NOT NULL DEFAULT '0', `route` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `tenant_id` varchar(255) 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; -- -- Dumping data for table `modules` -- INSERT INTO `modules` (`id`, `name`, `is_active`, `is_hidden`, `route`, `tenant_id`, `created_at`, `updated_at`) VALUES (1, 'Odontograms', 1, 0, 'odontograms.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (2, 'Patients', 1, 0, 'patients.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (3, 'Doctors', 1, 0, 'doctors.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (4, 'Accountants', 1, 0, 'accountants.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (5, 'Medicines', 1, 0, 'medicines.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (6, 'Nurses', 1, 0, 'nurses.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (7, 'Receptionists', 1, 0, 'receptionists.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (8, 'Lab Technicians', 1, 0, 'lab-technicians.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (9, 'Pharmacists', 1, 0, 'pharmacists.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (10, 'Birth Reports', 1, 0, 'birth-reports.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (11, 'Death Reports', 1, 0, 'death-reports.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (12, 'Investigation Reports', 1, 0, 'investigation-reports.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (13, 'Operation Reports', 1, 0, 'operation-reports.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (14, 'Income', 1, 0, 'incomes.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (15, 'Expense', 1, 0, 'expenses.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (16, 'SMS', 1, 0, 'sms.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (17, 'IPD Patients', 1, 0, 'ipd.patient.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (18, 'OPD Patients', 1, 0, 'opd.patient.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (19, 'Accounts', 1, 0, 'accounts.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (20, 'Employee Payrolls', 1, 0, 'employee-payrolls.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (21, 'Invoices', 1, 0, 'invoices.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (22, 'Payments', 1, 0, 'payments.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (23, 'Payment Reports', 1, 0, 'payment.reports', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (24, 'Advance Payments', 1, 0, 'advanced-payments.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (25, 'Bills', 1, 0, 'bills.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (26, 'Bed Types', 1, 0, 'bed-types.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (27, 'Beds', 1, 0, 'beds.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (28, 'Bed Assigns', 1, 0, 'bed-assigns.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (29, 'Blood Banks', 1, 0, 'blood-banks.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (30, 'Blood Donors', 1, 0, 'blood-donors.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (31, 'Documents', 1, 0, 'documents.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (32, 'Document Types', 1, 0, 'document-types.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (33, 'Services', 1, 0, 'services.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (34, 'Insurances', 1, 0, 'insurances.index', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (35, 'Packages', 1, 0, 'packages.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (36, 'Ambulances', 1, 0, 'ambulances.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (37, 'Ambulances Calls', 1, 0, 'ambulance-calls.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (38, 'Appointments', 1, 0, 'appointments.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (39, 'Call Logs', 1, 0, 'call_logs.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (40, 'Visitors', 1, 0, 'visitors.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (41, 'Postal Receive', 1, 0, 'receives.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (42, 'Postal Dispatch', 1, 0, 'dispatches.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (43, 'Notice Boards', 1, 0, 'noticeboard', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (44, 'Mail', 1, 0, 'mail', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (45, 'Enquires', 1, 0, 'enquiries', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (46, 'Charge Categories', 1, 0, 'charge-categories.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (47, 'Charges', 1, 0, 'charges.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (48, 'Doctor OPD Charges', 1, 0, 'doctor-opd-charges.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (49, 'Items Categories', 1, 0, 'item-categories.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (50, 'Items', 1, 0, 'items.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (51, 'Item Stocks', 1, 0, 'item.stock.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (52, 'Issued Items', 1, 0, 'issued.item.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (53, 'Diagnosis Categories', 1, 0, 'diagnosis.category.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (54, 'Diagnosis Tests', 1, 0, 'patient.diagnosis.test.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (55, 'Pathology Categories', 1, 0, 'pathology.category.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (56, 'Pathology Tests', 1, 0, 'pathology.test.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (57, 'Radiology Categories', 1, 0, 'radiology.category.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (58, 'Radiology Tests', 1, 0, 'radiology.test.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (59, 'Medicine Categories', 1, 0, 'categories.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (60, 'Medicine Brands', 1, 0, 'brands.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (61, 'Doctor Departments', 1, 0, 'doctor-departments.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (62, 'Schedules', 1, 0, 'schedules.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (63, 'Prescriptions', 1, 0, 'prescriptions.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (64, 'Cases', 1, 0, 'patient-cases.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (65, 'Case Handlers', 1, 0, 'case-handlers.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (66, 'Patient Admissions', 1, 0, 'patient-admissions.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (67, 'My Payrolls', 1, 0, 'payroll', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (68, 'Patient Cases', 1, 0, 'patients.cases', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (69, 'Testimonial', 1, 0, 'testimonials.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (70, 'Blood Donations', 1, 0, 'blood-donations.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (71, 'Blood Issues', 1, 0, 'blood-issues.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (72, 'Live Consultations', 1, 0, 'live.consultation.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (73, 'Live Meetings', 1, 0, 'live.meeting.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (74, 'Vaccinated Patients', 1, 0, 'vaccinated-patients.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (75, 'Vaccinations', 1, 0, 'vaccinations.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (76, 'Purchased Medicine', 1, 0, 'medicine-purchase.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (77, 'Pathology Units', 1, 0, 'pathology.unit.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (78, 'Pathology Parameters', 1, 0, 'pathology.parameter.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (79, 'Vaccinations', 1, 0, 'vaccinations.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (80, 'Vaccinated Patients', 1, 0, 'vaccinated-patients.index', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'); -- -------------------------------------------------------- -- -- Table structure for table `notice_boards` -- CREATE TABLE `notice_boards` ( `id` int UNSIGNED NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `tenant_id` varchar(255) 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 `notifications` -- CREATE TABLE `notifications` ( `id` int UNSIGNED NOT NULL, `type` int NOT NULL, `notification_for` int NOT NULL, `user_id` bigint UNSIGNED NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `text` text COLLATE utf8mb4_unicode_ci, `meta` text COLLATE utf8mb4_unicode_ci, `read_at` timestamp NULL DEFAULT NULL, `tenant_id` varchar(255) 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 `nurses` -- CREATE TABLE `nurses` ( `id` int UNSIGNED NOT NULL, `user_id` bigint UNSIGNED NOT NULL, `tenant_id` varchar(255) 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 `odontograms` -- CREATE TABLE `odontograms` ( `id` bigint UNSIGNED NOT NULL, `odontogram` json DEFAULT NULL, `patient_id` int UNSIGNED NOT NULL, `doctor_id` bigint UNSIGNED NOT NULL, `description` varchar(255) 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 `opd_diagnoses` -- CREATE TABLE `opd_diagnoses` ( `id` int UNSIGNED NOT NULL, `opd_patient_department_id` int UNSIGNED NOT NULL, `report_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `report_date` datetime NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `tenant_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `report_generated` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `opd_patient_departments` -- CREATE TABLE `opd_patient_departments` ( `id` int UNSIGNED NOT NULL, `patient_id` int UNSIGNED NOT NULL, `opd_number` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `height` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `weight` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `bp` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `symptoms` text COLLATE utf8mb4_unicode_ci, `notes` text COLLATE utf8mb4_unicode_ci, `appointment_date` datetime NOT NULL, `case_id` int UNSIGNED DEFAULT NULL, `is_old_patient` tinyint(1) DEFAULT '0', `doctor_id` bigint UNSIGNED DEFAULT NULL, `standard_charge` double NOT NULL, `payment_mode` tinyint NOT NULL, `custom_field` longtext COLLATE utf8mb4_unicode_ci, `tenant_id` varchar(255) 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 `opd_prescriptions` -- CREATE TABLE `opd_prescriptions` ( `id` bigint UNSIGNED NOT NULL, `opd_patient_department_id` int UNSIGNED NOT NULL, `header_note` text COLLATE utf8mb4_unicode_ci, `footer_note` text COLLATE utf8mb4_unicode_ci, `tenant_id` varchar(255) 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 `opd_prescription_items` -- CREATE TABLE `opd_prescription_items` ( `id` bigint UNSIGNED NOT NULL, `opd_prescription_id` bigint UNSIGNED NOT NULL, `category_id` int UNSIGNED NOT NULL, `medicine_id` int UNSIGNED NOT NULL, `dosage` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `dose_interval` int NOT NULL, `day` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `time` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `instruction` text COLLATE utf8mb4_unicode_ci NOT NULL, `tenant_id` varchar(255) 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 `opd_timelines` -- CREATE TABLE `opd_timelines` ( `id` int UNSIGNED NOT NULL, `opd_patient_department_id` int UNSIGNED NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `date` date NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `visible_to_person` tinyint(1) NOT NULL DEFAULT '1', `tenant_id` varchar(255) 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 `operation_reports` -- CREATE TABLE `operation_reports` ( `id` int UNSIGNED NOT NULL, `patient_id` int UNSIGNED NOT NULL, `case_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `doctor_id` bigint UNSIGNED NOT NULL, `date` datetime NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `tenant_id` varchar(255) 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 `packages` -- CREATE TABLE `packages` ( `id` int UNSIGNED NOT NULL, `name` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `discount` double NOT NULL, `total_amount` double NOT NULL, `tenant_id` varchar(255) 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 `package_services` -- CREATE TABLE `package_services` ( `id` bigint UNSIGNED NOT NULL, `package_id` int UNSIGNED NOT NULL, `service_id` int UNSIGNED NOT NULL, `quantity` double NOT NULL, `rate` double 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 `password_reset_tokens` -- CREATE TABLE `password_reset_tokens` ( `email` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL, `token` longtext 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 `pathology_categories` -- CREATE TABLE `pathology_categories` ( `id` int UNSIGNED NOT NULL, `name` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL, `tenant_id` varchar(255) 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 `pathology_parameters` -- CREATE TABLE `pathology_parameters` ( `id` int UNSIGNED NOT NULL, `parameter_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `reference_range` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `unit_id` int UNSIGNED NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `tenant_id` varchar(255) 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 `pathology_parameter_items` -- CREATE TABLE `pathology_parameter_items` ( `id` bigint UNSIGNED NOT NULL, `pathology_id` int UNSIGNED NOT NULL, `patient_result` text COLLATE utf8mb4_unicode_ci NOT NULL, `parameter_id` int 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 `pathology_tests` -- CREATE TABLE `pathology_tests` ( `id` int UNSIGNED NOT NULL, `test_name` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL, `short_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `test_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `category_id` int UNSIGNED NOT NULL, `unit` int DEFAULT NULL, `subcategory` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `method` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `report_days` int DEFAULT NULL, `charge_category_id` int UNSIGNED NOT NULL, `standard_charge` double NOT NULL, `patient_id` int UNSIGNED DEFAULT NULL, `tenant_id` varchar(255) 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 `pathology_units` -- CREATE TABLE `pathology_units` ( `id` int UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `tenant_id` varchar(255) 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 `patients` -- CREATE TABLE `patients` ( `id` int UNSIGNED NOT NULL, `user_id` bigint UNSIGNED NOT NULL, `tenant_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `template_id` int UNSIGNED DEFAULT NULL, `custom_field` longtext COLLATE utf8mb4_unicode_ci, `patient_unique_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `patient_admissions` -- CREATE TABLE `patient_admissions` ( `id` int UNSIGNED NOT NULL, `patient_admission_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `patient_id` int UNSIGNED NOT NULL, `doctor_id` bigint UNSIGNED NOT NULL, `admission_date` datetime NOT NULL, `discharge_date` datetime DEFAULT NULL, `package_id` int UNSIGNED DEFAULT NULL, `insurance_id` int UNSIGNED DEFAULT NULL, `bed_id` int UNSIGNED DEFAULT NULL, `policy_no` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `agent_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `guardian_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `guardian_relation` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `guardian_contact` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `guardian_address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) DEFAULT NULL, `tenant_id` varchar(255) 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 `patient_cases` -- CREATE TABLE `patient_cases` ( `id` int UNSIGNED NOT NULL, `case_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `patient_id` int UNSIGNED NOT NULL, `phone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `doctor_id` bigint UNSIGNED NOT NULL, `date` datetime NOT NULL, `fee` double NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `description` text COLLATE utf8mb4_unicode_ci, `tenant_id` varchar(255) 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 `patient_diagnosis_properties` -- CREATE TABLE `patient_diagnosis_properties` ( `id` int UNSIGNED NOT NULL, `patient_diagnosis_id` bigint UNSIGNED NOT NULL, `property_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `property_value` varchar(255) 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 `patient_diagnosis_tests` -- CREATE TABLE `patient_diagnosis_tests` ( `id` bigint UNSIGNED NOT NULL, `patient_id` int UNSIGNED NOT NULL, `doctor_id` bigint UNSIGNED NOT NULL, `category_id` bigint UNSIGNED NOT NULL, `report_number` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `tenant_id` varchar(255) 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 `patient_queues` -- CREATE TABLE `patient_queues` ( `id` bigint UNSIGNED NOT NULL, `appointment_id` bigint UNSIGNED NOT NULL, `no` int NOT NULL, `tenant_id` varchar(255) 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 `payments` -- CREATE TABLE `payments` ( `id` int UNSIGNED NOT NULL, `payment_date` date NOT NULL, `account_id` int UNSIGNED NOT NULL, `pay_to` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `amount` double NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `tenant_id` varchar(255) 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 `permissions` -- CREATE TABLE `permissions` ( `id` bigint UNSIGNED NOT NULL, `name` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL, `guard_name` varchar(160) 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`, `guard_name`, `created_at`, `updated_at`) VALUES (1, 'manage_users', 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (2, 'manage_beds', 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (3, 'manage_wards', 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (4, 'manage_appointments', 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (5, 'manage_prescriptions', 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (6, 'manage_patients', 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (7, 'manage_blood_bank', 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (8, 'manage_reports', 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (9, 'manage_payrolls', 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (10, 'manage_settings', 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (11, 'manage_notice_board', 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (12, 'manage_doctors', 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (13, 'manage_nurses', 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (14, 'manage_receptionists', 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (15, 'manage_pharmacists', 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (16, 'manage_accountants', 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (17, 'manage_invoices', 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (18, 'manage_operations_history', 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (19, 'manage_admit_history', 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (20, 'manage_blood_donor', 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (21, 'manage_medicines', 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (22, 'manage_department', 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (23, 'manage_doctor_departments', 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (24, 'manage_lab_technicians', 'web', '2025-06-04 23:42:25', '2025-06-04 23:42:25'); -- -------------------------------------------------------- -- -- Table structure for table `pharmacists` -- CREATE TABLE `pharmacists` ( `id` int UNSIGNED NOT NULL, `user_id` bigint UNSIGNED NOT NULL, `tenant_id` varchar(255) 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 `postals` -- CREATE TABLE `postals` ( `id` bigint UNSIGNED NOT NULL, `from_title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `to_title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reference_no` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `date` date DEFAULT NULL, `address` text COLLATE utf8mb4_unicode_ci, `type` int DEFAULT NULL, `tenant_id` varchar(255) 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 `prescriptions` -- CREATE TABLE `prescriptions` ( `id` int UNSIGNED NOT NULL, `patient_id` int UNSIGNED NOT NULL, `doctor_id` bigint UNSIGNED DEFAULT NULL, `food_allergies` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `tendency_bleed` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `heart_disease` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `high_blood_pressure` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `diabetic` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `surgery` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `accident` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `others` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `medical_history` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `current_medication` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `female_pregnancy` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `breast_feeding` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `health_insurance` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `low_income` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reference` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) DEFAULT NULL, `tenant_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `plus_rate` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `temperature` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `problem_description` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `test` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `advice` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `next_visit_qty` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `next_visit_time` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `prescriptions_medicines` -- CREATE TABLE `prescriptions_medicines` ( `id` bigint UNSIGNED NOT NULL, `prescription_id` int UNSIGNED NOT NULL, `medicine` int UNSIGNED NOT NULL, `dosage` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `day` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `time` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `dose_interval` int NOT NULL, `comment` varchar(255) 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 `purchased_medicines` -- CREATE TABLE `purchased_medicines` ( `id` bigint UNSIGNED NOT NULL, `purchase_medicines_id` bigint UNSIGNED NOT NULL, `medicine_id` int UNSIGNED DEFAULT NULL, `expiry_date` datetime DEFAULT NULL, `lot_no` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `tax` double NOT NULL, `quantity` int NOT NULL, `amount` double NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `tenant_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `purchase_medicines` -- CREATE TABLE `purchase_medicines` ( `id` bigint UNSIGNED NOT NULL, `purchase_no` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `tax` double NOT NULL, `total` double NOT NULL, `net_amount` double NOT NULL, `payment_type` int NOT NULL, `payment_status` tinyint(1) DEFAULT '1', `discount` double NOT NULL, `note` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_note` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `tenant_id` varchar(255) 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 `radiology_categories` -- CREATE TABLE `radiology_categories` ( `id` int UNSIGNED NOT NULL, `name` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL, `tenant_id` varchar(255) 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 `radiology_tests` -- CREATE TABLE `radiology_tests` ( `id` int UNSIGNED NOT NULL, `test_name` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL, `short_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `test_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `category_id` int UNSIGNED NOT NULL, `subcategory` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `report_days` int DEFAULT NULL, `charge_category_id` int UNSIGNED NOT NULL, `standard_charge` double NOT NULL, `tenant_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `charge_id` int UNSIGNED DEFAULT NULL, `patient_id` bigint UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `receptionists` -- CREATE TABLE `receptionists` ( `id` int UNSIGNED NOT NULL, `user_id` bigint UNSIGNED NOT NULL, `tenant_id` varchar(255) 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 `role_has_permissions` -- CREATE TABLE `role_has_permissions` ( `permission_id` bigint UNSIGNED NOT NULL, `role_id` bigint 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), (4, 2), (5, 2), (6, 2), (7, 2), (8, 2), (11, 2), (12, 2), (13, 2), (14, 2), (15, 2), (18, 2), (20, 2), (21, 2), (22, 2), (4, 3), (5, 3), (7, 3), (8, 3), (11, 3), (12, 3), (13, 3), (14, 3), (15, 3), (19, 3), (21, 3), (2, 4), (3, 4), (4, 4), (5, 4), (6, 4), (7, 4), (8, 4), (11, 4), (12, 4), (13, 4), (14, 4), (15, 4), (18, 4), (20, 4), (21, 4), (22, 4), (2, 5), (3, 5), (4, 5), (6, 5), (7, 5), (8, 5), (11, 5), (12, 5), (13, 5), (14, 5), (15, 5), (18, 5), (19, 5), (20, 5), (22, 5), (24, 5), (11, 6), (15, 6), (21, 6), (11, 7), (15, 7), (21, 7), (1, 10), (2, 10), (3, 10), (4, 10), (5, 10), (6, 10), (7, 10), (8, 10), (9, 10), (10, 10), (11, 10), (12, 10), (13, 10), (14, 10), (15, 10), (16, 10), (17, 10), (18, 10), (19, 10), (20, 10), (21, 10), (22, 10), (23, 10); -- -------------------------------------------------------- -- -- Table structure for table `sale_medicines` -- CREATE TABLE `sale_medicines` ( `id` bigint UNSIGNED NOT NULL, `medicine_bill_id` int UNSIGNED NOT NULL, `medicine_id` int UNSIGNED NOT NULL, `sale_quantity` int NOT NULL, `sale_price` double NOT NULL, `tax` double NOT NULL, `expiry_date` date 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 `schedules` -- CREATE TABLE `schedules` ( `id` int UNSIGNED NOT NULL, `doctor_id` bigint UNSIGNED NOT NULL, `per_patient_time` time NOT NULL, `tenant_id` varchar(255) 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 `schedule_days` -- CREATE TABLE `schedule_days` ( `id` bigint UNSIGNED NOT NULL, `doctor_id` bigint UNSIGNED NOT NULL, `schedule_id` int UNSIGNED NOT NULL, `available_on` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `available_from` time NOT NULL, `available_to` time 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 `section_fives` -- CREATE TABLE `section_fives` ( `id` bigint UNSIGNED NOT NULL, `main_img_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `card_img_url_one` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `card_img_url_two` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `card_img_url_three` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `card_img_url_four` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `card_one_number` int NOT NULL, `card_two_number` int NOT NULL, `card_three_number` int NOT NULL, `card_four_number` int NOT NULL, `card_one_text` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL, `card_two_text` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL, `card_three_text` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL, `card_four_text` varchar(15) 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 `section_fives` -- INSERT INTO `section_fives` (`id`, `main_img_url`, `card_img_url_one`, `card_img_url_two`, `card_img_url_three`, `card_img_url_four`, `card_one_number`, `card_two_number`, `card_three_number`, `card_four_number`, `card_one_text`, `card_two_text`, `card_three_text`, `card_four_text`, `created_at`, `updated_at`) VALUES (1, 'http://e-hms-saas-filament.test/uploads/14/07.png', 'http://e-hms-saas-filament.test/uploads/15/card_img_url_one.png', 'http://e-hms-saas-filament.test/uploads/16/card_img_url_two.png', 'http://e-hms-saas-filament.test/uploads/17/card_img_url_three.png', 'http://e-hms-saas-filament.test/uploads/18/card_imf_url_four.png', 234, 455, 365, 528, 'Services', 'Team Members', 'Happy Patients', 'Tonic Research', '2025-06-04 23:42:26', '2025-06-04 23:42:26'); -- -------------------------------------------------------- -- -- Table structure for table `section_fours` -- CREATE TABLE `section_fours` ( `id` bigint UNSIGNED NOT NULL, `text_main` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL, `text_secondary` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL, `img_url_one` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `img_url_two` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `img_url_three` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `img_url_four` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `img_url_five` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `img_url_six` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `card_text_one` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `card_text_two` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `card_text_three` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `card_text_four` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `card_text_five` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `card_text_six` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `card_text_one_secondary` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `card_text_two_secondary` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `card_text_three_secondary` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `card_text_four_secondary` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `card_text_five_secondary` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `card_text_six_secondary` varchar(100) 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 `section_fours` -- INSERT INTO `section_fours` (`id`, `text_main`, `text_secondary`, `img_url_one`, `img_url_two`, `img_url_three`, `img_url_four`, `img_url_five`, `img_url_six`, `card_text_one`, `card_text_two`, `card_text_three`, `card_text_four`, `card_text_five`, `card_text_six`, `card_text_one_secondary`, `card_text_two_secondary`, `card_text_three_secondary`, `card_text_four_secondary`, `card_text_five_secondary`, `card_text_six_secondary`, `created_at`, `updated_at`) VALUES (1, 'Grow Your Hospital', 'We Help To Grow Your Hospital Beyond Your Expectation', 'http://e-hms-saas-filament.test/uploads/8/bulit_seo.png', 'http://e-hms-saas-filament.test/uploads/9/hospital_profile.png', 'http://e-hms-saas-filament.test/uploads/10/online_appointment.png', 'http://e-hms-saas-filament.test/uploads/11/articles.png', 'http://e-hms-saas-filament.test/uploads/12/easy_to_use.png', 'http://e-hms-saas-filament.test/uploads/13/support.jpeg', 'Built SEO', 'Hospital Profile', 'Online Appointment', 'Articles', 'Easy to Use', '24*7 Support', 'SEO Brings Higher patient retention Rates which will Results into Higher Conversion Rate.', 'More than 80% of people searching for medical professionals make their selection from HMS.', 'Provide comfort to your patients in this pandemic situation to book online appointments.', 'Keep updated with latest techniques/knowledge/research to build a professional network.', 'Top quality Software with all Features easy to use and easily accessible.', 'Any time we are here to help you.', '2025-06-04 23:42:26', '2025-06-04 23:42:26'); -- -------------------------------------------------------- -- -- Table structure for table `section_ones` -- CREATE TABLE `section_ones` ( `id` bigint UNSIGNED NOT NULL, `text_main` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL, `text_secondary` varchar(135) COLLATE utf8mb4_unicode_ci NOT NULL, `img_url` varchar(255) 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 `section_ones` -- INSERT INTO `section_ones` (`id`, `text_main`, `text_secondary`, `img_url`, `created_at`, `updated_at`) VALUES (1, 'Manage Hospital Never Before', 'A Next Level Evolution In Healthcare IT, Web Based EMR, Revenue Cycle Management Solution, Designed To Meet The Opportunities.', 'http://e-hms-saas-filament.test/uploads/3/section_one.png', '2025-06-04 23:42:26', '2025-06-04 23:42:26'); -- -------------------------------------------------------- -- -- Table structure for table `section_threes` -- CREATE TABLE `section_threes` ( `id` bigint UNSIGNED NOT NULL, `text_main` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL, `text_secondary` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL, `img_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `text_one` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `text_two` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `text_three` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `text_four` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `text_five` varchar(50) 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; -- -- Dumping data for table `section_threes` -- INSERT INTO `section_threes` (`id`, `text_main`, `text_secondary`, `img_url`, `text_one`, `text_two`, `text_three`, `text_four`, `text_five`, `created_at`, `updated_at`) VALUES (1, 'Why Hospital SAAS?', 'We have implemented, Hospital SAAS for our patient\'s registration, appointment scheduling, inpatient management, ICU management, OT management, pharmacy.', 'http://e-hms-saas-filament.test/uploads/7/section_three_sass.png', 'Fully Secure', 'Easy To Use', 'Regular Updates', '24*7 Support', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'); -- -------------------------------------------------------- -- -- Table structure for table `section_twos` -- CREATE TABLE `section_twos` ( `id` bigint UNSIGNED NOT NULL, `text_main` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL, `text_secondary` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL, `card_one_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `card_one_text` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `card_one_text_secondary` varchar(90) COLLATE utf8mb4_unicode_ci NOT NULL, `card_two_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `card_two_text` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `card_two_text_secondary` varchar(90) COLLATE utf8mb4_unicode_ci NOT NULL, `card_third_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `card_third_text` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `card_third_text_secondary` varchar(90) 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 `section_twos` -- INSERT INTO `section_twos` (`id`, `text_main`, `text_secondary`, `card_one_image`, `card_one_text`, `card_one_text_secondary`, `card_two_image`, `card_two_text`, `card_two_text_secondary`, `card_third_image`, `card_third_text`, `card_third_text_secondary`, `created_at`, `updated_at`) VALUES (1, 'Protect Your Health', 'Our medical clinic provides quality care for the entire family while maintaining a personable atmosphere best services.', 'http://e-hms-saas-filament.test/uploads/4/appointment_schedule.png', 'Schedule Appointment', 'Makes it Easy for patients to Book Appointment online from anywhere & anytime.', 'http://e-hms-saas-filament.test/uploads/5/ipd_manage.png', 'OPD Management', 'Easily Manage Appointments with one.', 'http://e-hms-saas-filament.test/uploads/6/opd_manage.png', 'IPD Management', 'This module of hospital management system is designed to manage all Inpatient department', '2025-06-04 23:42:26', '2025-06-04 23:42:26'); -- -------------------------------------------------------- -- -- Table structure for table `services` -- CREATE TABLE `services` ( `id` int UNSIGNED NOT NULL, `name` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `quantity` int NOT NULL, `rate` double NOT NULL, `status` int NOT NULL, `tenant_id` varchar(255) 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 `service_sliders` -- CREATE TABLE `service_sliders` ( `id` bigint UNSIGNED 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 `service_sliders` -- INSERT INTO `service_sliders` (`id`, `created_at`, `updated_at`) VALUES (1, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (2, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (3, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (4, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (5, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (6, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (7, '2025-06-04 23:42:26', '2025-06-04 23:42:26'); -- -------------------------------------------------------- -- -- Table structure for table `sessions` -- CREATE TABLE `sessions` ( `id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint UNSIGNED DEFAULT NULL, `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_agent` text COLLATE utf8mb4_unicode_ci, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `last_activity` int NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `settings` -- CREATE TABLE `settings` ( `id` int UNSIGNED NOT NULL, `key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `value` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `tenant_id` varchar(255) 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; -- -- Dumping data for table `settings` -- INSERT INTO `settings` (`id`, `key`, `value`, `tenant_id`, `created_at`, `updated_at`) VALUES (1, 'phone_pe_enable', NULL, NULL, '2025-06-04 23:42:24', '2025-06-04 23:42:24'), (2, 'phonepe_merchant_id', NULL, NULL, '2025-06-04 23:42:24', '2025-06-04 23:42:24'), (3, 'phonepe_merchant_user_id', NULL, NULL, '2025-06-04 23:42:24', '2025-06-04 23:42:24'), (4, 'phonepe_env', NULL, NULL, '2025-06-04 23:42:24', '2025-06-04 23:42:24'), (5, 'phonepe_salt_key', NULL, NULL, '2025-06-04 23:42:24', '2025-06-04 23:42:24'), (6, 'phonepe_salt_index', NULL, NULL, '2025-06-04 23:42:24', '2025-06-04 23:42:24'), (7, 'phonepe_merchant_transaction_id', NULL, NULL, '2025-06-04 23:42:24', '2025-06-04 23:42:24'), (8, 'flutterwave_enable', NULL, NULL, '2025-06-04 23:42:24', '2025-06-04 23:42:24'), (9, 'flutterwave_public_key', NULL, NULL, '2025-06-04 23:42:24', '2025-06-04 23:42:24'), (10, 'flutterwave_secret_key', NULL, NULL, '2025-06-04 23:42:24', '2025-06-04 23:42:24'), (11, 'app_name', 'HMS', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (12, 'app_logo', 'web/img/hms-saas-logo.png', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (13, 'company_name', 'InfyOmLabs', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (14, 'current_currency', 'inr', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (15, 'hospital_address', '16/A saint Joseph Park', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (16, 'hospital_email', 'cityhospital@gmail.com', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (17, 'hospital_phone', '+919876543210', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (18, 'hospital_from_day', 'Mon to Fri', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (19, 'hospital_from_time', '9 AM to 9 PM', NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (20, 'favicon', 'web/img/hms-saas-favicon.ico', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (21, 'facebook_url', 'https://www.facebook.com/test', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (22, 'twitter_url', 'https://twitter.com/test?lang=en', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (23, 'instagram_url', 'https://www.instagram.com/?hl=en', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (24, 'linkedIn_url', 'https://www.linkedin.com/test', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (25, 'about_us', 'Over past 10+ years of experience and skills in various technologies, we built great scalable products.', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (26, 'enable_google_recaptcha', '0', NULL, '2025-06-04 23:42:26', '2025-06-04 23:42:26'); -- -------------------------------------------------------- -- -- Table structure for table `smart_patient_cards` -- CREATE TABLE `smart_patient_cards` ( `id` int UNSIGNED NOT NULL, `template_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `header_color` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `show_email` tinyint(1) NOT NULL, `show_phone` tinyint(1) NOT NULL, `show_dob` tinyint(1) NOT NULL, `show_blood_group` tinyint(1) NOT NULL, `show_address` tinyint(1) NOT NULL, `show_patient_unique_id` tinyint(1) NOT NULL, `show_insurance` tinyint(1) NOT NULL DEFAULT '0', `tenant_id` varchar(255) 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 `sms` -- CREATE TABLE `sms` ( `id` bigint UNSIGNED NOT NULL, `send_to` bigint UNSIGNED DEFAULT NULL, `region_code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone_number` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `send_by` bigint UNSIGNED NOT NULL, `tenant_id` varchar(255) 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 `subscribes` -- CREATE TABLE `subscribes` ( `id` bigint UNSIGNED NOT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `subscribe` 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 `subscriptions` -- CREATE TABLE `subscriptions` ( `id` bigint UNSIGNED NOT NULL, `user_id` bigint UNSIGNED NOT NULL, `subscription_plan_id` bigint UNSIGNED DEFAULT NULL, `transaction_id` bigint UNSIGNED DEFAULT NULL, `plan_amount` double NOT NULL, `plan_frequency` int NOT NULL DEFAULT '1' COMMENT '1 = Month, 2 = Year', `starts_at` datetime NOT NULL, `ends_at` datetime NOT NULL, `trial_ends_at` datetime DEFAULT NULL, `sms_limit` bigint NOT NULL 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 `subscription_plans` -- CREATE TABLE `subscription_plans` ( `id` bigint UNSIGNED NOT NULL, `currency` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT 'usd', `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `price` double DEFAULT '0', `frequency` int NOT NULL DEFAULT '1' COMMENT '1 = Month, 2 = Year', `is_default` int NOT NULL DEFAULT '0', `trial_days` int NOT NULL DEFAULT '0' COMMENT 'Default validity will be 7 trial days', `sms_limit` bigint 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 `subscription_plans` -- INSERT INTO `subscription_plans` (`id`, `currency`, `name`, `price`, `frequency`, `is_default`, `trial_days`, `sms_limit`, `created_at`, `updated_at`) VALUES (1, 'usd', 'Standard', 10, 1, 1, 7, 0, '2025-06-04 23:42:26', '2025-06-04 23:42:26'); -- -------------------------------------------------------- -- -- Table structure for table `super_admin_currency_settings` -- CREATE TABLE `super_admin_currency_settings` ( `id` bigint UNSIGNED NOT NULL, `currency_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `currency_code` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `currency_icon` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `super_admin_currency_settings` -- INSERT INTO `super_admin_currency_settings` (`id`, `currency_name`, `currency_code`, `currency_icon`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 'United states dollar', 'USD', '$', '2025-06-04 23:42:23', '2025-06-04 23:42:23', NULL), (2, 'Indian rupee', 'INR', '₹', '2025-06-04 23:42:23', '2025-06-04 23:42:23', NULL), (3, 'Euro', 'EUR', '€', '2025-06-04 23:42:23', '2025-06-04 23:42:23', NULL), (4, 'Australian Dollar', 'AUD', 'AU$', '2025-06-04 23:42:23', '2025-06-04 23:42:23', NULL), (5, 'Japanese Yen', 'JPY', '¥', '2025-06-04 23:42:23', '2025-06-04 23:42:23', NULL), (6, 'British Pound Sterling', 'GBP', '£', '2025-06-04 23:42:23', '2025-06-04 23:42:23', NULL), (7, 'Canadian Dollar', 'CAD', 'C$', '2025-06-04 23:42:23', '2025-06-04 23:42:23', NULL), (8, 'Kenyan Shilling', 'KES', 'Ksh', '2025-06-04 23:42:23', '2025-06-04 23:42:23', NULL), (9, 'Swiss Franc', 'CHF', 'CHF', '2025-06-04 23:42:23', '2025-06-04 23:42:23', NULL); -- -------------------------------------------------------- -- -- Table structure for table `super_admin_enquiries` -- CREATE TABLE `super_admin_enquiries` ( `id` bigint UNSIGNED NOT NULL, `first_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `last_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `phone` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `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 `super_admin_settings` -- CREATE TABLE `super_admin_settings` ( `id` int UNSIGNED NOT NULL, `key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `value` varchar(255) 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; -- -- Dumping data for table `super_admin_settings` -- INSERT INTO `super_admin_settings` (`id`, `key`, `value`, `created_at`, `updated_at`) VALUES (1, 'default_country_code', 'in', '2025-06-04 23:42:23', '2025-06-04 23:42:23'), (2, 'super_admin_currency', 'inr', '2025-06-04 23:42:23', '2025-06-04 23:42:23'), (3, 'enable_google_recaptcha', '0', '2025-06-04 23:42:23', '2025-06-04 23:42:23'), (4, 'google_captcha_key', '', '2025-06-04 23:42:23', '2025-06-04 23:42:23'), (5, 'google_captcha_secret', '', '2025-06-04 23:42:23', '2025-06-04 23:42:23'), (6, 'stripe_key', '', '2025-06-04 23:42:23', '2025-06-04 23:42:23'), (7, 'stripe_secret', '', '2025-06-04 23:42:23', '2025-06-04 23:42:23'), (8, 'stripe_enable', '0', '2025-06-04 23:42:23', '2025-06-04 23:42:23'), (9, 'paypal_key', '', '2025-06-04 23:42:23', '2025-06-04 23:42:23'), (10, 'paypal_secret', '', '2025-06-04 23:42:23', '2025-06-04 23:42:23'), (11, 'paypal_mode', 'sandbox', '2025-06-04 23:42:23', '2025-06-04 23:42:23'), (12, 'paypal_enable', '0', '2025-06-04 23:42:23', '2025-06-04 23:42:23'), (13, 'razorpay_key', '', '2025-06-04 23:42:23', '2025-06-04 23:42:23'), (14, 'razorpay_secret', '', '2025-06-04 23:42:23', '2025-06-04 23:42:23'), (15, 'razorpay_enable', '0', '2025-06-04 23:42:23', '2025-06-04 23:42:23'), (16, 'default_language', 'en', '2025-06-04 23:42:24', '2025-06-04 23:42:24'), (17, 'manual_instruction', 'Manual Instruction', '2025-06-04 23:42:24', '2025-06-04 23:42:24'), (18, 'paystack_key', NULL, '2025-06-04 23:42:24', '2025-06-04 23:42:24'), (19, 'paystack_secret', NULL, '2025-06-04 23:42:24', '2025-06-04 23:42:24'), (20, 'paystack_enable', '0', '2025-06-04 23:42:24', '2025-06-04 23:42:24'), (21, 'phonepe_merchant_id', NULL, '2025-06-04 23:42:24', '2025-06-04 23:42:24'), (22, 'phonepe_merchant_user_id', NULL, '2025-06-04 23:42:24', '2025-06-04 23:42:24'), (23, 'phonepe_env', NULL, '2025-06-04 23:42:24', '2025-06-04 23:42:24'), (24, 'phonepe_salt_key', NULL, '2025-06-04 23:42:24', '2025-06-04 23:42:24'), (25, 'phonepe_salt_index', NULL, '2025-06-04 23:42:24', '2025-06-04 23:42:24'), (26, 'phonepe_merchant_transaction_id', NULL, '2025-06-04 23:42:24', '2025-06-04 23:42:24'), (27, 'phonepe_enable', '0', '2025-06-04 23:42:24', '2025-06-04 23:42:24'), (28, 'flutterwave_key', NULL, '2025-06-04 23:42:24', '2025-06-04 23:42:24'), (29, 'flutterwave_secret', NULL, '2025-06-04 23:42:24', '2025-06-04 23:42:24'), (30, 'flutterwave_enable', '0', '2025-06-04 23:42:24', '2025-06-04 23:42:24'), (31, 'app_logo', 'http://e-hms-saas-filament.test/uploads/1/hms-saas-logo.png', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (32, 'favicon', 'http://e-hms-saas-filament.test/uploads/2/hms-saas-favicon.ico', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (33, 'app_name', 'InfyHMS', '2025-06-04 23:42:25', '2025-06-04 23:42:25'), (34, 'footer_text', 'Over past 10+ years of experience and skills in various technologies, we built great scalable products. Whatever technology we worked with, we just not build products for our clients but we a', '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (35, 'address', '423B, Road Wordwide Country, USA', '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (36, 'email', 'admin@hms.com', '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (37, 'phone', '+91 2345678900', '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (38, 'facebook_url', 'https://www.facebook.com/test/', '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (39, 'twitter_url', 'https://twitter.com/test?lang=en', '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (40, 'instagram_url', 'https://www.instagram.com/?hl=en', '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (41, 'linkedin_url', 'https://www.linkedin.com/test', '2025-06-04 23:42:26', '2025-06-04 23:42:26'), (42, 'plan_expire_notification', '6', '2025-06-04 23:42:26', '2025-06-04 23:42:26'); -- -------------------------------------------------------- -- -- Table structure for table `tenants` -- CREATE TABLE `tenants` ( `id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `tenant_username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `hospital_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `data` text COLLATE utf8mb4_unicode_ci ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `testimonials` -- CREATE TABLE `testimonials` ( `id` bigint UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci NOT NULL, `tenant_id` varchar(255) 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 `transactions` -- CREATE TABLE `transactions` ( `id` bigint UNSIGNED NOT NULL, `transaction_id` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL, `payment_type` int NOT NULL COMMENT '1 = Stripe, 2 = Paypal', `amount` double NOT NULL, `user_id` bigint UNSIGNED NOT NULL, `status` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL, `is_manual_payment` bigint UNSIGNED DEFAULT '0', `meta` longtext COLLATE utf8mb4_unicode_ci, `tenant_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `notes` text COLLATE utf8mb4_unicode_ci ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `used_medicines` -- CREATE TABLE `used_medicines` ( `id` bigint UNSIGNED NOT NULL, `stock_used` int NOT NULL, `medicine_id` int UNSIGNED DEFAULT NULL, `model_id` int NOT NULL, `model_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `tenant_id` varchar(255) 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 `users` -- CREATE TABLE `users` ( `id` bigint UNSIGNED NOT NULL, `department_id` bigint UNSIGNED DEFAULT NULL, `first_name` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL, `last_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `city` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `designation` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `region_code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_super_admin_default` tinyint(1) NOT NULL DEFAULT '0', `gender` int NOT NULL DEFAULT '0', `is_admin_default` tinyint(1) NOT NULL DEFAULT '0', `qualification` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `blood_group` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `dob` date DEFAULT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `owner_id` int DEFAULT NULL, `owner_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL, `language` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en', `username` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `hospital_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `tenant_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `facebook_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `twitter_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `instagram_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `linkedIn_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `theme_mode` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `hospital_type_id` bigint UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `department_id`, `first_name`, `last_name`, `email`, `city`, `password`, `designation`, `phone`, `region_code`, `is_super_admin_default`, `gender`, `is_admin_default`, `qualification`, `blood_group`, `dob`, `email_verified_at`, `owner_id`, `owner_type`, `status`, `language`, `username`, `hospital_name`, `tenant_id`, `remember_token`, `facebook_url`, `twitter_url`, `instagram_url`, `linkedIn_url`, `created_at`, `updated_at`, `theme_mode`, `hospital_type_id`) VALUES (1, 10, 'Super', 'Admin', 'admin@hms.com', NULL, '$2y$12$LGoYWNQQacb1At0rIoMlh.bjE7XcjiCivghSSISamyVqDsaYTNAZq', NULL, '7878454512', NULL, 0, 1, 0, NULL, 'B+', '1994-12-12', '2025-06-04 23:42:25', NULL, NULL, 1, 'en', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-06-04 23:42:25', '2025-06-04 23:42:25', '0', NULL); -- -------------------------------------------------------- -- -- Table structure for table `user_google_event_schedules` -- CREATE TABLE `user_google_event_schedules` ( `id` bigint UNSIGNED NOT NULL, `user_id` bigint UNSIGNED NOT NULL, `google_live_consultation_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `google_calendar_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `google_event_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `google_meet_link` varchar(255) 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 `user_tenants` -- CREATE TABLE `user_tenants` ( `id` bigint UNSIGNED NOT NULL, `user_id` bigint UNSIGNED NOT NULL, `tenant_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `last_login_at` datetime 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 `user_zoom_credential` -- CREATE TABLE `user_zoom_credential` ( `id` bigint UNSIGNED NOT NULL, `user_id` bigint UNSIGNED NOT NULL, `zoom_api_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `zoom_api_secret` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `tenant_id` varchar(255) 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 `vaccinated_patients` -- CREATE TABLE `vaccinated_patients` ( `id` int UNSIGNED NOT NULL, `patient_id` int UNSIGNED NOT NULL, `vaccination_id` int UNSIGNED NOT NULL, `vaccination_serial_number` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `dose_number` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `dose_given_date` datetime NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `tenant_id` varchar(255) 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 `vaccinations` -- CREATE TABLE `vaccinations` ( `id` int UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `manufactured_by` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `brand` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `tenant_id` varchar(255) 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 `visitors` -- CREATE TABLE `visitors` ( `id` bigint UNSIGNED NOT NULL, `purpose` int NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `phone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `id_card` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `no_of_person` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `date` date DEFAULT NULL, `in_time` time DEFAULT NULL, `out_time` time DEFAULT NULL, `note` text COLLATE utf8mb4_unicode_ci, `tenant_id` varchar(255) 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 `zoom_o_auth_credentials` -- CREATE TABLE `zoom_o_auth_credentials` ( `id` bigint UNSIGNED NOT NULL, `user_id` bigint UNSIGNED NOT NULL, `access_token` text COLLATE utf8mb4_unicode_ci NOT NULL, `refresh_token` 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; -- -- Indexes for dumped tables -- -- -- Indexes for table `accountants` -- ALTER TABLE `accountants` ADD PRIMARY KEY (`id`), ADD KEY `accountants_tenant_id_foreign` (`tenant_id`), ADD KEY `accountants_user_id_foreign` (`user_id`); -- -- Indexes for table `accounts` -- ALTER TABLE `accounts` ADD PRIMARY KEY (`id`), ADD KEY `accounts_tenant_id_foreign` (`tenant_id`), ADD KEY `accounts_name_index` (`name`); -- -- Indexes for table `addresses` -- ALTER TABLE `addresses` ADD PRIMARY KEY (`id`), ADD KEY `addresses_tenant_id_foreign` (`tenant_id`); -- -- Indexes for table `admin_testimonials` -- ALTER TABLE `admin_testimonials` ADD PRIMARY KEY (`id`); -- -- Indexes for table `advanced_payments` -- ALTER TABLE `advanced_payments` ADD PRIMARY KEY (`id`), ADD KEY `advanced_payments_tenant_id_foreign` (`tenant_id`), ADD KEY `advanced_payments_patient_id_foreign` (`patient_id`), ADD KEY `advanced_payments_amount_index` (`amount`); -- -- Indexes for table `ambulances` -- ALTER TABLE `ambulances` ADD PRIMARY KEY (`id`), ADD KEY `ambulances_tenant_id_foreign` (`tenant_id`), ADD KEY `ambulances_vehicle_number_index` (`vehicle_number`); -- -- Indexes for table `ambulance_calls` -- ALTER TABLE `ambulance_calls` ADD PRIMARY KEY (`id`), ADD KEY `ambulance_calls_tenant_id_foreign` (`tenant_id`), ADD KEY `ambulance_calls_patient_id_foreign` (`patient_id`), ADD KEY `ambulance_calls_ambulance_id_foreign` (`ambulance_id`), ADD KEY `ambulance_calls_date_index` (`date`); -- -- Indexes for table `appointments` -- ALTER TABLE `appointments` ADD PRIMARY KEY (`id`), ADD KEY `appointments_tenant_id_foreign` (`tenant_id`), ADD KEY `appointments_doctor_id_foreign` (`doctor_id`), ADD KEY `appointments_opd_date_index` (`opd_date`), ADD KEY `appointments_patient_id_foreign` (`patient_id`), ADD KEY `appointments_department_id_foreign` (`department_id`); -- -- Indexes for table `appointment_transactions` -- ALTER TABLE `appointment_transactions` ADD PRIMARY KEY (`id`), ADD KEY `appointment_transactions_tenant_id_foreign` (`tenant_id`), ADD KEY `appointment_transactions_appointment_id_foreign` (`appointment_id`); -- -- Indexes for table `beds` -- ALTER TABLE `beds` ADD PRIMARY KEY (`id`), ADD KEY `beds_tenant_id_foreign` (`tenant_id`), ADD KEY `beds_bed_type_foreign` (`bed_type`), ADD KEY `beds_is_available_index` (`is_available`); -- -- Indexes for table `bed_assigns` -- ALTER TABLE `bed_assigns` ADD PRIMARY KEY (`id`), ADD KEY `bed_assigns_tenant_id_foreign` (`tenant_id`), ADD KEY `bed_assigns_bed_id_foreign` (`bed_id`), ADD KEY `bed_assigns_patient_id_foreign` (`patient_id`), ADD KEY `bed_assigns_created_at_assign_date_index` (`created_at`,`assign_date`), ADD KEY `bed_assigns_ipd_patient_department_id_foreign` (`ipd_patient_department_id`); -- -- Indexes for table `bed_types` -- ALTER TABLE `bed_types` ADD PRIMARY KEY (`id`), ADD KEY `bed_types_tenant_id_foreign` (`tenant_id`), ADD KEY `bed_types_title_index` (`title`); -- -- Indexes for table `bills` -- ALTER TABLE `bills` ADD PRIMARY KEY (`id`), ADD KEY `bills_tenant_id_foreign` (`tenant_id`), ADD KEY `bills_patient_id_foreign` (`patient_id`), ADD KEY `bills_bill_date_index` (`bill_date`); -- -- Indexes for table `bill_items` -- ALTER TABLE `bill_items` ADD PRIMARY KEY (`id`), ADD KEY `bill_items_bill_id_foreign` (`bill_id`); -- -- Indexes for table `bill_transactions` -- ALTER TABLE `bill_transactions` ADD PRIMARY KEY (`id`), ADD KEY `bill_transactions_bill_id_foreign` (`bill_id`), ADD KEY `bill_transactions_tenant_id_foreign` (`tenant_id`); -- -- Indexes for table `birth_reports` -- ALTER TABLE `birth_reports` ADD PRIMARY KEY (`id`), ADD KEY `birth_reports_tenant_id_foreign` (`tenant_id`), ADD KEY `birth_reports_patient_id_foreign` (`patient_id`), ADD KEY `birth_reports_doctor_id_foreign` (`doctor_id`), ADD KEY `birth_reports_date_index` (`date`); -- -- Indexes for table `blood_banks` -- ALTER TABLE `blood_banks` ADD PRIMARY KEY (`id`), ADD KEY `blood_banks_tenant_id_foreign` (`tenant_id`), ADD KEY `blood_banks_remained_bags_index` (`remained_bags`); -- -- Indexes for table `blood_donations` -- ALTER TABLE `blood_donations` ADD PRIMARY KEY (`id`), ADD KEY `blood_donations_tenant_id_foreign` (`tenant_id`), ADD KEY `blood_donations_blood_donor_id_foreign` (`blood_donor_id`); -- -- Indexes for table `blood_donors` -- ALTER TABLE `blood_donors` ADD PRIMARY KEY (`id`), ADD KEY `blood_donors_tenant_id_foreign` (`tenant_id`), ADD KEY `blood_donors_created_at_last_donate_date_index` (`created_at`,`last_donate_date`); -- -- Indexes for table `blood_issues` -- ALTER TABLE `blood_issues` ADD PRIMARY KEY (`id`), ADD KEY `blood_issues_tenant_id_foreign` (`tenant_id`), ADD KEY `blood_issues_doctor_id_foreign` (`doctor_id`), ADD KEY `blood_issues_donor_id_foreign` (`donor_id`), ADD KEY `blood_issues_patient_id_foreign` (`patient_id`); -- -- Indexes for table `brands` -- ALTER TABLE `brands` ADD PRIMARY KEY (`id`), ADD KEY `brands_tenant_id_foreign` (`tenant_id`), ADD KEY `brands_name_index` (`name`); -- -- Indexes for table `cache` -- ALTER TABLE `cache` ADD PRIMARY KEY (`key`); -- -- Indexes for table `cache_locks` -- ALTER TABLE `cache_locks` ADD PRIMARY KEY (`key`); -- -- Indexes for table `call_logs` -- ALTER TABLE `call_logs` ADD PRIMARY KEY (`id`), ADD KEY `call_logs_tenant_id_foreign` (`tenant_id`); -- -- Indexes for table `case_handlers` -- ALTER TABLE `case_handlers` ADD PRIMARY KEY (`id`), ADD KEY `case_handlers_tenant_id_foreign` (`tenant_id`), ADD KEY `case_handlers_user_id_foreign` (`user_id`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`), ADD KEY `categories_tenant_id_foreign` (`tenant_id`), ADD KEY `categories_name_index` (`name`); -- -- Indexes for table `charges` -- ALTER TABLE `charges` ADD PRIMARY KEY (`id`), ADD KEY `charges_tenant_id_foreign` (`tenant_id`), ADD KEY `charges_charge_category_id_foreign` (`charge_category_id`), ADD KEY `charges_code_index` (`code`); -- -- Indexes for table `charge_categories` -- ALTER TABLE `charge_categories` ADD PRIMARY KEY (`id`), ADD KEY `charge_categories_tenant_id_foreign` (`tenant_id`), ADD KEY `charge_categories_name_index` (`name`); -- -- Indexes for table `currency_settings` -- ALTER TABLE `currency_settings` ADD PRIMARY KEY (`id`), ADD KEY `currency_settings_tenant_id_foreign` (`tenant_id`); -- -- Indexes for table `custom_fields` -- ALTER TABLE `custom_fields` ADD PRIMARY KEY (`id`), ADD KEY `custom_fields_tenant_id_foreign` (`tenant_id`); -- -- Indexes for table `death_reports` -- ALTER TABLE `death_reports` ADD PRIMARY KEY (`id`), ADD KEY `death_reports_tenant_id_foreign` (`tenant_id`), ADD KEY `death_reports_patient_id_foreign` (`patient_id`), ADD KEY `death_reports_doctor_id_foreign` (`doctor_id`), ADD KEY `death_reports_date_index` (`date`); -- -- Indexes for table `departments` -- ALTER TABLE `departments` ADD PRIMARY KEY (`id`); -- -- Indexes for table `diagnosis_categories` -- ALTER TABLE `diagnosis_categories` ADD PRIMARY KEY (`id`), ADD KEY `diagnosis_categories_name_index` (`name`), ADD KEY `diagnosis_categories_tenant_id_foreign` (`tenant_id`); -- -- Indexes for table `doctors` -- ALTER TABLE `doctors` ADD PRIMARY KEY (`id`), ADD KEY `doctors_user_id_foreign` (`user_id`), ADD KEY `doctors_tenant_id_foreign` (`tenant_id`), ADD KEY `doctors_doctor_department_id_foreign` (`doctor_department_id`); -- -- Indexes for table `doctor_departments` -- ALTER TABLE `doctor_departments` ADD PRIMARY KEY (`id`), ADD KEY `doctor_departments_tenant_id_foreign` (`tenant_id`), ADD KEY `doctor_departments_title_index` (`title`); -- -- Indexes for table `doctor_holidays` -- ALTER TABLE `doctor_holidays` ADD PRIMARY KEY (`id`), ADD KEY `doctor_holidays_tenant_id_foreign` (`tenant_id`), ADD KEY `doctor_holidays_doctor_id_foreign` (`doctor_id`); -- -- Indexes for table `doctor_opd_charges` -- ALTER TABLE `doctor_opd_charges` ADD PRIMARY KEY (`id`), ADD KEY `doctor_opd_charges_tenant_id_foreign` (`tenant_id`), ADD KEY `doctor_opd_charges_doctor_id_foreign` (`doctor_id`), ADD KEY `doctor_opd_charges_created_at_index` (`created_at`); -- -- Indexes for table `documents` -- ALTER TABLE `documents` ADD PRIMARY KEY (`id`), ADD KEY `documents_tenant_id_foreign` (`tenant_id`), ADD KEY `documents_uploaded_by_foreign` (`uploaded_by`); -- -- Indexes for table `document_types` -- ALTER TABLE `document_types` ADD PRIMARY KEY (`id`), ADD KEY `document_types_tenant_id_foreign` (`tenant_id`), ADD KEY `document_types_name_index` (`name`); -- -- Indexes for table `domains` -- ALTER TABLE `domains` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `domains_domain_unique` (`domain`), ADD KEY `domains_tenant_id_foreign` (`tenant_id`); -- -- Indexes for table `employee_payrolls` -- ALTER TABLE `employee_payrolls` ADD PRIMARY KEY (`id`), ADD KEY `employee_payrolls_tenant_id_foreign` (`tenant_id`), ADD KEY `employee_payrolls_id_sr_no_index` (`id`,`sr_no`); -- -- Indexes for table `enquiries` -- ALTER TABLE `enquiries` ADD PRIMARY KEY (`id`), ADD KEY `enquiries_tenant_id_foreign` (`tenant_id`), ADD KEY `enquiries_viewed_by_foreign` (`viewed_by`), ADD KEY `enquiries_created_at_index` (`created_at`); -- -- Indexes for table `event_google_calendars` -- ALTER TABLE `event_google_calendars` ADD PRIMARY KEY (`id`), ADD KEY `event_google_calendars_user_id_foreign` (`user_id`), ADD KEY `event_google_calendars_google_calendar_list_id_foreign` (`google_calendar_list_id`); -- -- Indexes for table `expenses` -- ALTER TABLE `expenses` ADD PRIMARY KEY (`id`), ADD KEY `expenses_tenant_id_foreign` (`tenant_id`), ADD KEY `expenses_date_index` (`date`); -- -- Indexes for table `exports` -- ALTER TABLE `exports` ADD PRIMARY KEY (`id`), ADD KEY `exports_user_id_foreign` (`user_id`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`); -- -- Indexes for table `faqs` -- ALTER TABLE `faqs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `features` -- ALTER TABLE `features` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `features_name_unique` (`name`), ADD KEY `features_name_submenu_has_parent_is_default_index` (`name`,`submenu`,`has_parent`,`is_default`); -- -- Indexes for table `feature_subscriptionplan` -- ALTER TABLE `feature_subscriptionplan` ADD PRIMARY KEY (`id`), ADD KEY `feature_subscriptionplan_feature_id_subscription_plan_id_index` (`feature_id`,`subscription_plan_id`), ADD KEY `feature_subscriptionplan_subscription_plan_id_foreign` (`subscription_plan_id`); -- -- Indexes for table `front_services` -- ALTER TABLE `front_services` ADD PRIMARY KEY (`id`), ADD KEY `front_services_tenant_id_foreign` (`tenant_id`); -- -- Indexes for table `front_settings` -- ALTER TABLE `front_settings` ADD PRIMARY KEY (`id`), ADD KEY `front_settings_tenant_id_foreign` (`tenant_id`); -- -- Indexes for table `google_calendar_integrations` -- ALTER TABLE `google_calendar_integrations` ADD PRIMARY KEY (`id`), ADD KEY `google_calendar_integrations_user_id_foreign` (`user_id`); -- -- Indexes for table `google_calendar_lists` -- ALTER TABLE `google_calendar_lists` ADD PRIMARY KEY (`id`), ADD KEY `google_calendar_lists_user_id_foreign` (`user_id`); -- -- Indexes for table `hospital_schedules` -- ALTER TABLE `hospital_schedules` ADD PRIMARY KEY (`id`), ADD KEY `hospital_schedules_tenant_id_foreign` (`tenant_id`); -- -- Indexes for table `hospital_type` -- ALTER TABLE `hospital_type` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `hospital_type_name_unique` (`name`); -- -- Indexes for table `incomes` -- ALTER TABLE `incomes` ADD PRIMARY KEY (`id`), ADD KEY `incomes_tenant_id_foreign` (`tenant_id`), ADD KEY `incomes_date_index` (`date`); -- -- Indexes for table `insurances` -- ALTER TABLE `insurances` ADD PRIMARY KEY (`id`), ADD KEY `insurances_tenant_id_foreign` (`tenant_id`), ADD KEY `insurances_name_index` (`name`); -- -- Indexes for table `insurance_diseases` -- ALTER TABLE `insurance_diseases` ADD PRIMARY KEY (`id`), ADD KEY `insurance_diseases_insurance_id_foreign` (`insurance_id`); -- -- Indexes for table `investigation_reports` -- ALTER TABLE `investigation_reports` ADD PRIMARY KEY (`id`), ADD KEY `investigation_reports_tenant_id_foreign` (`tenant_id`), ADD KEY `investigation_reports_patient_id_foreign` (`patient_id`), ADD KEY `investigation_reports_doctor_id_foreign` (`doctor_id`), ADD KEY `investigation_reports_date_index` (`date`); -- -- Indexes for table `invoices` -- ALTER TABLE `invoices` ADD PRIMARY KEY (`id`), ADD KEY `invoices_tenant_id_foreign` (`tenant_id`), ADD KEY `invoices_patient_id_foreign` (`patient_id`), ADD KEY `invoices_invoice_date_index` (`invoice_date`); -- -- Indexes for table `invoice_items` -- ALTER TABLE `invoice_items` ADD PRIMARY KEY (`id`), ADD KEY `invoice_items_account_id_foreign` (`account_id`), ADD KEY `invoice_items_invoice_id_foreign` (`invoice_id`); -- -- Indexes for table `ipd_bills` -- ALTER TABLE `ipd_bills` ADD PRIMARY KEY (`id`), ADD KEY `ipd_bills_tenant_id_foreign` (`tenant_id`), ADD KEY `ipd_bills_ipd_patient_department_id_foreign` (`ipd_patient_department_id`); -- -- Indexes for table `ipd_charges` -- ALTER TABLE `ipd_charges` ADD PRIMARY KEY (`id`), ADD KEY `ipd_charges_tenant_id_foreign` (`tenant_id`), ADD KEY `ipd_charges_ipd_patient_department_id_foreign` (`ipd_patient_department_id`), ADD KEY `ipd_charges_charge_category_id_foreign` (`charge_category_id`), ADD KEY `ipd_charges_charge_id_foreign` (`charge_id`); -- -- Indexes for table `ipd_consultant_registers` -- ALTER TABLE `ipd_consultant_registers` ADD PRIMARY KEY (`id`), ADD KEY `ipd_consultant_registers_tenant_id_foreign` (`tenant_id`), ADD KEY `ipd_consultant_registers_ipd_patient_department_id_foreign` (`ipd_patient_department_id`), ADD KEY `ipd_consultant_registers_doctor_id_foreign` (`doctor_id`); -- -- Indexes for table `ipd_diagnoses` -- ALTER TABLE `ipd_diagnoses` ADD PRIMARY KEY (`id`), ADD KEY `ipd_diagnoses_tenant_id_foreign` (`tenant_id`), ADD KEY `ipd_diagnoses_ipd_patient_department_id_foreign` (`ipd_patient_department_id`); -- -- Indexes for table `ipd_patient_departments` -- ALTER TABLE `ipd_patient_departments` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `ipd_patient_departments_ipd_number_unique` (`ipd_number`), ADD KEY `ipd_patient_departments_tenant_id_foreign` (`tenant_id`), ADD KEY `ipd_patient_departments_patient_id_foreign` (`patient_id`), ADD KEY `ipd_patient_departments_case_id_foreign` (`case_id`), ADD KEY `ipd_patient_departments_doctor_id_foreign` (`doctor_id`), ADD KEY `ipd_patient_departments_bed_type_id_foreign` (`bed_type_id`), ADD KEY `ipd_patient_departments_bed_id_foreign` (`bed_id`); -- -- Indexes for table `ipd_payments` -- ALTER TABLE `ipd_payments` ADD PRIMARY KEY (`id`), ADD KEY `ipd_payments_tenant_id_foreign` (`tenant_id`), ADD KEY `ipd_payments_ipd_patient_department_id_foreign` (`ipd_patient_department_id`); -- -- Indexes for table `ipd_prescriptions` -- ALTER TABLE `ipd_prescriptions` ADD PRIMARY KEY (`id`), ADD KEY `ipd_prescriptions_tenant_id_foreign` (`tenant_id`), ADD KEY `ipd_prescriptions_ipd_patient_department_id_foreign` (`ipd_patient_department_id`); -- -- Indexes for table `ipd_prescription_items` -- ALTER TABLE `ipd_prescription_items` ADD PRIMARY KEY (`id`), ADD KEY `ipd_prescription_items_tenant_id_foreign` (`tenant_id`), ADD KEY `ipd_prescription_items_ipd_prescription_id_foreign` (`ipd_prescription_id`), ADD KEY `ipd_prescription_items_category_id_foreign` (`category_id`), ADD KEY `ipd_prescription_items_medicine_id_foreign` (`medicine_id`); -- -- Indexes for table `ipd_timelines` -- ALTER TABLE `ipd_timelines` ADD PRIMARY KEY (`id`), ADD KEY `ipd_timelines_tenant_id_foreign` (`tenant_id`), ADD KEY `ipd_timelines_ipd_patient_department_id_foreign` (`ipd_patient_department_id`); -- -- Indexes for table `issued_items` -- ALTER TABLE `issued_items` ADD PRIMARY KEY (`id`), ADD KEY `issued_items_tenant_id_foreign` (`tenant_id`), ADD KEY `issued_items_department_id_foreign` (`department_id`), ADD KEY `issued_items_user_id_foreign` (`user_id`), ADD KEY `issued_items_item_category_id_foreign` (`item_category_id`), ADD KEY `issued_items_item_id_foreign` (`item_id`); -- -- Indexes for table `items` -- ALTER TABLE `items` ADD PRIMARY KEY (`id`), ADD KEY `items_tenant_id_foreign` (`tenant_id`), ADD KEY `items_item_category_id_foreign` (`item_category_id`); -- -- Indexes for table `item_categories` -- ALTER TABLE `item_categories` ADD PRIMARY KEY (`id`), ADD KEY `item_categories_tenant_id_foreign` (`tenant_id`); -- -- Indexes for table `item_stocks` -- ALTER TABLE `item_stocks` ADD PRIMARY KEY (`id`), ADD KEY `item_stocks_tenant_id_foreign` (`tenant_id`), ADD KEY `item_stocks_item_category_id_foreign` (`item_category_id`), ADD KEY `item_stocks_item_id_foreign` (`item_id`); -- -- Indexes for table `jobs` -- ALTER TABLE `jobs` ADD PRIMARY KEY (`id`), ADD KEY `jobs_queue_index` (`queue`); -- -- Indexes for table `job_batches` -- ALTER TABLE `job_batches` ADD PRIMARY KEY (`id`); -- -- Indexes for table `lab_technicians` -- ALTER TABLE `lab_technicians` ADD PRIMARY KEY (`id`), ADD KEY `lab_technicians_tenant_id_foreign` (`tenant_id`), ADD KEY `lab_technicians_user_id_foreign` (`user_id`); -- -- Indexes for table `landing_about_us` -- ALTER TABLE `landing_about_us` ADD PRIMARY KEY (`id`); -- -- Indexes for table `live_consultations` -- ALTER TABLE `live_consultations` ADD PRIMARY KEY (`id`), ADD KEY `live_consultations_tenant_id_foreign` (`tenant_id`), ADD KEY `live_consultations_doctor_id_foreign` (`doctor_id`), ADD KEY `live_consultations_patient_id_foreign` (`patient_id`); -- -- Indexes for table `live_meetings` -- ALTER TABLE `live_meetings` ADD PRIMARY KEY (`id`), ADD KEY `live_meetings_tenant_id_foreign` (`tenant_id`); -- -- Indexes for table `live_meetings_candidates` -- ALTER TABLE `live_meetings_candidates` ADD PRIMARY KEY (`id`); -- -- Indexes for table `lunch_breaks` -- ALTER TABLE `lunch_breaks` ADD PRIMARY KEY (`id`), ADD KEY `lunch_breaks_tenant_id_foreign` (`tenant_id`), ADD KEY `lunch_breaks_doctor_id_foreign` (`doctor_id`); -- -- Indexes for table `mails` -- ALTER TABLE `mails` ADD PRIMARY KEY (`id`), ADD KEY `mails_tenant_id_foreign` (`tenant_id`), ADD KEY `mails_user_id_foreign` (`user_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 `medicines` -- ALTER TABLE `medicines` ADD PRIMARY KEY (`id`), ADD KEY `medicines_tenant_id_foreign` (`tenant_id`), ADD KEY `medicines_category_id_foreign` (`category_id`), ADD KEY `medicines_brand_id_foreign` (`brand_id`), ADD KEY `medicines_name_index` (`name`); -- -- Indexes for table `medicine_bills` -- ALTER TABLE `medicine_bills` ADD PRIMARY KEY (`id`), ADD KEY `medicine_bills_tenant_id_foreign` (`tenant_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 UNIQUE KEY `model_has_permissions_model_type_unique` (`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 `modules` -- ALTER TABLE `modules` ADD PRIMARY KEY (`id`), ADD KEY `modules_tenant_id_foreign` (`tenant_id`); -- -- Indexes for table `notice_boards` -- ALTER TABLE `notice_boards` ADD PRIMARY KEY (`id`), ADD KEY `notice_boards_tenant_id_foreign` (`tenant_id`), ADD KEY `notice_boards_created_at_id_index` (`created_at`,`id`); -- -- Indexes for table `notifications` -- ALTER TABLE `notifications` ADD PRIMARY KEY (`id`), ADD KEY `notifications_tenant_id_foreign` (`tenant_id`), ADD KEY `notifications_user_id_foreign` (`user_id`); -- -- Indexes for table `nurses` -- ALTER TABLE `nurses` ADD PRIMARY KEY (`id`), ADD KEY `nurses_tenant_id_foreign` (`tenant_id`), ADD KEY `nurses_user_id_foreign` (`user_id`); -- -- Indexes for table `odontograms` -- ALTER TABLE `odontograms` ADD PRIMARY KEY (`id`), ADD KEY `odontograms_patient_id_foreign` (`patient_id`), ADD KEY `odontograms_doctor_id_foreign` (`doctor_id`); -- -- Indexes for table `opd_diagnoses` -- ALTER TABLE `opd_diagnoses` ADD PRIMARY KEY (`id`), ADD KEY `opd_diagnoses_tenant_id_foreign` (`tenant_id`), ADD KEY `opd_diagnoses_opd_patient_department_id_foreign` (`opd_patient_department_id`); -- -- Indexes for table `opd_patient_departments` -- ALTER TABLE `opd_patient_departments` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `opd_patient_departments_opd_number_unique` (`opd_number`), ADD KEY `opd_patient_departments_tenant_id_foreign` (`tenant_id`), ADD KEY `opd_patient_departments_patient_id_foreign` (`patient_id`), ADD KEY `opd_patient_departments_case_id_foreign` (`case_id`), ADD KEY `opd_patient_departments_doctor_id_foreign` (`doctor_id`); -- -- Indexes for table `opd_prescriptions` -- ALTER TABLE `opd_prescriptions` ADD PRIMARY KEY (`id`), ADD KEY `opd_prescriptions_tenant_id_foreign` (`tenant_id`), ADD KEY `opd_prescriptions_opd_patient_department_id_foreign` (`opd_patient_department_id`); -- -- Indexes for table `opd_prescription_items` -- ALTER TABLE `opd_prescription_items` ADD PRIMARY KEY (`id`), ADD KEY `opd_prescription_items_tenant_id_foreign` (`tenant_id`), ADD KEY `opd_prescription_items_opd_prescription_id_foreign` (`opd_prescription_id`), ADD KEY `opd_prescription_items_category_id_foreign` (`category_id`), ADD KEY `opd_prescription_items_medicine_id_foreign` (`medicine_id`); -- -- Indexes for table `opd_timelines` -- ALTER TABLE `opd_timelines` ADD PRIMARY KEY (`id`), ADD KEY `opd_timelines_tenant_id_foreign` (`tenant_id`), ADD KEY `opd_timelines_opd_patient_department_id_foreign` (`opd_patient_department_id`); -- -- Indexes for table `operation_reports` -- ALTER TABLE `operation_reports` ADD PRIMARY KEY (`id`), ADD KEY `operation_reports_tenant_id_foreign` (`tenant_id`), ADD KEY `operation_reports_patient_id_foreign` (`patient_id`), ADD KEY `operation_reports_date_index` (`date`), ADD KEY `operation_reports_doctor_id_foreign` (`doctor_id`); -- -- Indexes for table `packages` -- ALTER TABLE `packages` ADD PRIMARY KEY (`id`), ADD KEY `packages_tenant_id_foreign` (`tenant_id`), ADD KEY `packages_created_at_name_index` (`created_at`,`name`); -- -- Indexes for table `package_services` -- ALTER TABLE `package_services` ADD PRIMARY KEY (`id`), ADD KEY `package_services_package_id_foreign` (`package_id`), ADD KEY `package_services_service_id_foreign` (`service_id`); -- -- Indexes for table `password_reset_tokens` -- ALTER TABLE `password_reset_tokens` ADD KEY `password_resets_email_index` (`email`); -- -- Indexes for table `pathology_categories` -- ALTER TABLE `pathology_categories` ADD PRIMARY KEY (`id`), ADD KEY `pathology_categories_tenant_id_foreign` (`tenant_id`), ADD KEY `pathology_categories_name_index` (`name`); -- -- Indexes for table `pathology_parameters` -- ALTER TABLE `pathology_parameters` ADD PRIMARY KEY (`id`), ADD KEY `pathology_parameters_tenant_id_foreign` (`tenant_id`), ADD KEY `pathology_parameters_unit_id_foreign` (`unit_id`); -- -- Indexes for table `pathology_parameter_items` -- ALTER TABLE `pathology_parameter_items` ADD PRIMARY KEY (`id`), ADD KEY `pathology_parameter_items_pathology_id_foreign` (`pathology_id`), ADD KEY `pathology_parameter_items_parameter_id_foreign` (`parameter_id`); -- -- Indexes for table `pathology_tests` -- ALTER TABLE `pathology_tests` ADD PRIMARY KEY (`id`), ADD KEY `pathology_tests_tenant_id_foreign` (`tenant_id`), ADD KEY `pathology_tests_category_id_foreign` (`category_id`), ADD KEY `pathology_tests_charge_category_id_foreign` (`charge_category_id`), ADD KEY `pathology_tests_test_name_index` (`test_name`), ADD KEY `pathology_tests_patient_id_foreign` (`patient_id`); -- -- Indexes for table `pathology_units` -- ALTER TABLE `pathology_units` ADD PRIMARY KEY (`id`), ADD KEY `pathology_units_tenant_id_foreign` (`tenant_id`); -- -- Indexes for table `patients` -- ALTER TABLE `patients` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `patients_patient_unique_id_unique` (`patient_unique_id`), ADD KEY `patients_tenant_id_foreign` (`tenant_id`), ADD KEY `patients_user_id_foreign` (`user_id`), ADD KEY `patients_template_id_foreign` (`template_id`); -- -- Indexes for table `patient_admissions` -- ALTER TABLE `patient_admissions` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `patient_admissions_patient_admission_id_unique` (`patient_admission_id`), ADD KEY `patient_admissions_tenant_id_foreign` (`tenant_id`), ADD KEY `patient_admissions_patient_id_foreign` (`patient_id`), ADD KEY `patient_admissions_doctor_id_foreign` (`doctor_id`), ADD KEY `patient_admissions_package_id_foreign` (`package_id`), ADD KEY `patient_admissions_insurance_id_foreign` (`insurance_id`), ADD KEY `patient_admissions_bed_id_foreign` (`bed_id`), ADD KEY `patient_admissions_admission_date_index` (`admission_date`); -- -- Indexes for table `patient_cases` -- ALTER TABLE `patient_cases` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `patient_cases_case_id_unique` (`case_id`), ADD KEY `patient_cases_tenant_id_foreign` (`tenant_id`), ADD KEY `patient_cases_patient_id_foreign` (`patient_id`), ADD KEY `patient_cases_doctor_id_foreign` (`doctor_id`), ADD KEY `patient_cases_date_index` (`date`); -- -- Indexes for table `patient_diagnosis_properties` -- ALTER TABLE `patient_diagnosis_properties` ADD PRIMARY KEY (`id`), ADD KEY `patient_diagnosis_properties_created_at_index` (`created_at`), ADD KEY `patient_diagnosis_properties_patient_diagnosis_id_foreign` (`patient_diagnosis_id`); -- -- Indexes for table `patient_diagnosis_tests` -- ALTER TABLE `patient_diagnosis_tests` ADD PRIMARY KEY (`id`), ADD KEY `patient_diagnosis_tests_created_at_index` (`created_at`), ADD KEY `patient_diagnosis_tests_tenant_id_foreign` (`tenant_id`), ADD KEY `patient_diagnosis_tests_patient_id_foreign` (`patient_id`), ADD KEY `patient_diagnosis_tests_doctor_id_foreign` (`doctor_id`), ADD KEY `patient_diagnosis_tests_category_id_foreign` (`category_id`); -- -- Indexes for table `patient_queues` -- ALTER TABLE `patient_queues` ADD PRIMARY KEY (`id`), ADD KEY `patient_queues_appointment_id_foreign` (`appointment_id`), ADD KEY `patient_queues_tenant_id_foreign` (`tenant_id`); -- -- Indexes for table `payments` -- ALTER TABLE `payments` ADD PRIMARY KEY (`id`), ADD KEY `payments_tenant_id_foreign` (`tenant_id`), ADD KEY `payments_account_id_foreign` (`account_id`), ADD KEY `payments_payment_date_index` (`payment_date`); -- -- Indexes for table `permissions` -- ALTER TABLE `permissions` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `permissions_name_guard_name_unique` (`name`,`guard_name`); -- -- Indexes for table `pharmacists` -- ALTER TABLE `pharmacists` ADD PRIMARY KEY (`id`), ADD KEY `pharmacists_tenant_id_foreign` (`tenant_id`), ADD KEY `pharmacists_user_id_foreign` (`user_id`); -- -- Indexes for table `postals` -- ALTER TABLE `postals` ADD PRIMARY KEY (`id`), ADD KEY `postals_tenant_id_foreign` (`tenant_id`); -- -- Indexes for table `prescriptions` -- ALTER TABLE `prescriptions` ADD PRIMARY KEY (`id`), ADD KEY `prescriptions_tenant_id_foreign` (`tenant_id`), ADD KEY `prescriptions_patient_id_foreign` (`patient_id`), ADD KEY `prescriptions_doctor_id_foreign` (`doctor_id`); -- -- Indexes for table `prescriptions_medicines` -- ALTER TABLE `prescriptions_medicines` ADD PRIMARY KEY (`id`), ADD KEY `prescriptions_medicines_prescription_id_foreign` (`prescription_id`), ADD KEY `prescriptions_medicines_medicine_foreign` (`medicine`); -- -- Indexes for table `purchased_medicines` -- ALTER TABLE `purchased_medicines` ADD PRIMARY KEY (`id`), ADD KEY `purchased_medicines_medicine_id_foreign` (`medicine_id`), ADD KEY `purchased_medicines_purchase_medicines_id_foreign` (`purchase_medicines_id`), ADD KEY `purchased_medicines_tenant_id_foreign` (`tenant_id`); -- -- Indexes for table `purchase_medicines` -- ALTER TABLE `purchase_medicines` ADD PRIMARY KEY (`id`), ADD KEY `purchase_medicines_tenant_id_foreign` (`tenant_id`); -- -- Indexes for table `radiology_categories` -- ALTER TABLE `radiology_categories` ADD PRIMARY KEY (`id`), ADD KEY `radiology_categories_tenant_id_foreign` (`tenant_id`), ADD KEY `radiology_categories_name_index` (`name`); -- -- Indexes for table `radiology_tests` -- ALTER TABLE `radiology_tests` ADD PRIMARY KEY (`id`), ADD KEY `radiology_tests_tenant_id_foreign` (`tenant_id`), ADD KEY `radiology_tests_category_id_foreign` (`category_id`), ADD KEY `radiology_tests_charge_category_id_foreign` (`charge_category_id`), ADD KEY `radiology_tests_test_name_index` (`test_name`), ADD KEY `radiology_tests_charge_id_foreign` (`charge_id`); -- -- Indexes for table `receptionists` -- ALTER TABLE `receptionists` ADD PRIMARY KEY (`id`), ADD KEY `receptionists_tenant_id_foreign` (`tenant_id`), ADD KEY `receptionists_user_id_foreign` (`user_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 `sale_medicines` -- ALTER TABLE `sale_medicines` ADD PRIMARY KEY (`id`); -- -- Indexes for table `schedules` -- ALTER TABLE `schedules` ADD PRIMARY KEY (`id`), ADD KEY `schedules_tenant_id_foreign` (`tenant_id`), ADD KEY `schedules_doctor_id_foreign` (`doctor_id`); -- -- Indexes for table `schedule_days` -- ALTER TABLE `schedule_days` ADD PRIMARY KEY (`id`), ADD KEY `schedule_days_doctor_id_foreign` (`doctor_id`), ADD KEY `schedule_days_schedule_id_foreign` (`schedule_id`); -- -- Indexes for table `section_fives` -- ALTER TABLE `section_fives` ADD PRIMARY KEY (`id`); -- -- Indexes for table `section_fours` -- ALTER TABLE `section_fours` ADD PRIMARY KEY (`id`); -- -- Indexes for table `section_ones` -- ALTER TABLE `section_ones` ADD PRIMARY KEY (`id`); -- -- Indexes for table `section_threes` -- ALTER TABLE `section_threes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `section_twos` -- ALTER TABLE `section_twos` ADD PRIMARY KEY (`id`); -- -- Indexes for table `services` -- ALTER TABLE `services` ADD PRIMARY KEY (`id`), ADD KEY `services_tenant_id_foreign` (`tenant_id`), ADD KEY `services_name_index` (`name`); -- -- Indexes for table `service_sliders` -- ALTER TABLE `service_sliders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sessions` -- ALTER TABLE `sessions` ADD PRIMARY KEY (`id`), ADD KEY `sessions_user_id_index` (`user_id`), ADD KEY `sessions_last_activity_index` (`last_activity`); -- -- Indexes for table `settings` -- ALTER TABLE `settings` ADD PRIMARY KEY (`id`), ADD KEY `settings_tenant_id_foreign` (`tenant_id`); -- -- Indexes for table `smart_patient_cards` -- ALTER TABLE `smart_patient_cards` ADD PRIMARY KEY (`id`), ADD KEY `smart_patient_cards_tenant_id_foreign` (`tenant_id`); -- -- Indexes for table `sms` -- ALTER TABLE `sms` ADD PRIMARY KEY (`id`), ADD KEY `sms_tenant_id_foreign` (`tenant_id`), ADD KEY `sms_send_to_foreign` (`send_to`), ADD KEY `sms_send_by_foreign` (`send_by`); -- -- Indexes for table `subscribes` -- ALTER TABLE `subscribes` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `subscribes_email_unique` (`email`); -- -- Indexes for table `subscriptions` -- ALTER TABLE `subscriptions` ADD PRIMARY KEY (`id`), ADD KEY `subscriptions_user_id_index` (`user_id`), ADD KEY `subscriptions_subscription_plan_id_index` (`subscription_plan_id`), ADD KEY `subscriptions_transaction_id_index` (`transaction_id`), ADD KEY `subscriptions_plan_amount_index` (`plan_amount`), ADD KEY `subscriptions_plan_frequency_index` (`plan_frequency`), ADD KEY `subscriptions_starts_at_index` (`starts_at`), ADD KEY `subscriptions_ends_at_index` (`ends_at`), ADD KEY `subscriptions_trial_ends_at_index` (`trial_ends_at`), ADD KEY `subscriptions_status_index` (`status`); -- -- Indexes for table `subscription_plans` -- ALTER TABLE `subscription_plans` ADD PRIMARY KEY (`id`); -- -- Indexes for table `super_admin_currency_settings` -- ALTER TABLE `super_admin_currency_settings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `super_admin_enquiries` -- ALTER TABLE `super_admin_enquiries` ADD PRIMARY KEY (`id`); -- -- Indexes for table `super_admin_settings` -- ALTER TABLE `super_admin_settings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tenants` -- ALTER TABLE `tenants` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `tenants_tenant_username_unique` (`tenant_username`), ADD UNIQUE KEY `tenants_hospital_name_unique` (`hospital_name`); -- -- Indexes for table `testimonials` -- ALTER TABLE `testimonials` ADD PRIMARY KEY (`id`), ADD KEY `testimonials_tenant_id_foreign` (`tenant_id`); -- -- Indexes for table `transactions` -- ALTER TABLE `transactions` ADD PRIMARY KEY (`id`), ADD KEY `transactions_transaction_id_index` (`transaction_id`), ADD KEY `transactions_payment_type_index` (`payment_type`), ADD KEY `transactions_amount_index` (`amount`), ADD KEY `transactions_user_id_index` (`user_id`), ADD KEY `transactions_status_index` (`status`), ADD KEY `transactions_tenant_id_foreign` (`tenant_id`); -- -- Indexes for table `used_medicines` -- ALTER TABLE `used_medicines` ADD PRIMARY KEY (`id`), ADD KEY `used_medicines_medicine_id_foreign` (`medicine_id`), ADD KEY `used_medicines_tenant_id_foreign` (`tenant_id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`), ADD UNIQUE KEY `users_username_unique` (`username`), ADD KEY `users_tenant_id_foreign` (`tenant_id`), ADD KEY `users_first_name_index` (`first_name`), ADD KEY `users_hospital_type_id_foreign` (`hospital_type_id`); -- -- Indexes for table `user_google_event_schedules` -- ALTER TABLE `user_google_event_schedules` ADD PRIMARY KEY (`id`), ADD KEY `user_google_event_schedules_user_id_foreign` (`user_id`); -- -- Indexes for table `user_tenants` -- ALTER TABLE `user_tenants` ADD PRIMARY KEY (`id`), ADD KEY `user_tenants_tenant_id_foreign` (`tenant_id`), ADD KEY `user_tenants_user_id_foreign` (`user_id`); -- -- Indexes for table `user_zoom_credential` -- ALTER TABLE `user_zoom_credential` ADD PRIMARY KEY (`id`), ADD KEY `user_zoom_credential_tenant_id_foreign` (`tenant_id`), ADD KEY `user_zoom_credential_user_id_foreign` (`user_id`); -- -- Indexes for table `vaccinated_patients` -- ALTER TABLE `vaccinated_patients` ADD PRIMARY KEY (`id`), ADD KEY `vaccinated_patients_tenant_id_foreign` (`tenant_id`), ADD KEY `vaccinated_patients_id_index` (`id`), ADD KEY `vaccinated_patients_patient_id_index` (`patient_id`), ADD KEY `vaccinated_patients_vaccination_id_index` (`vaccination_id`); -- -- Indexes for table `vaccinations` -- ALTER TABLE `vaccinations` ADD PRIMARY KEY (`id`), ADD KEY `vaccinations_tenant_id_foreign` (`tenant_id`), ADD KEY `vaccinations_id_index` (`id`); -- -- Indexes for table `visitors` -- ALTER TABLE `visitors` ADD PRIMARY KEY (`id`), ADD KEY `visitors_tenant_id_foreign` (`tenant_id`); -- -- Indexes for table `zoom_o_auth_credentials` -- ALTER TABLE `zoom_o_auth_credentials` ADD PRIMARY KEY (`id`), ADD KEY `zoom_o_auth_credentials_user_id_foreign` (`user_id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `accountants` -- ALTER TABLE `accountants` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `accounts` -- ALTER TABLE `accounts` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `addresses` -- ALTER TABLE `addresses` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admin_testimonials` -- ALTER TABLE `admin_testimonials` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `advanced_payments` -- ALTER TABLE `advanced_payments` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `ambulances` -- ALTER TABLE `ambulances` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `ambulance_calls` -- ALTER TABLE `ambulance_calls` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `appointments` -- ALTER TABLE `appointments` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `appointment_transactions` -- ALTER TABLE `appointment_transactions` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `beds` -- ALTER TABLE `beds` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `bed_assigns` -- ALTER TABLE `bed_assigns` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `bed_types` -- ALTER TABLE `bed_types` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `bills` -- ALTER TABLE `bills` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `bill_items` -- ALTER TABLE `bill_items` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `bill_transactions` -- ALTER TABLE `bill_transactions` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `birth_reports` -- ALTER TABLE `birth_reports` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `blood_banks` -- ALTER TABLE `blood_banks` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `blood_donations` -- ALTER TABLE `blood_donations` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `blood_donors` -- ALTER TABLE `blood_donors` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `blood_issues` -- ALTER TABLE `blood_issues` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `brands` -- ALTER TABLE `brands` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `call_logs` -- ALTER TABLE `call_logs` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `case_handlers` -- ALTER TABLE `case_handlers` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `charges` -- ALTER TABLE `charges` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `charge_categories` -- ALTER TABLE `charge_categories` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `currency_settings` -- ALTER TABLE `currency_settings` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `custom_fields` -- ALTER TABLE `custom_fields` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `death_reports` -- ALTER TABLE `death_reports` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `departments` -- ALTER TABLE `departments` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; -- -- AUTO_INCREMENT for table `diagnosis_categories` -- ALTER TABLE `diagnosis_categories` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `doctors` -- ALTER TABLE `doctors` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `doctor_departments` -- ALTER TABLE `doctor_departments` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `doctor_holidays` -- ALTER TABLE `doctor_holidays` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `doctor_opd_charges` -- ALTER TABLE `doctor_opd_charges` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `documents` -- ALTER TABLE `documents` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `document_types` -- ALTER TABLE `document_types` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `domains` -- ALTER TABLE `domains` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `employee_payrolls` -- ALTER TABLE `employee_payrolls` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `enquiries` -- ALTER TABLE `enquiries` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `event_google_calendars` -- ALTER TABLE `event_google_calendars` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `expenses` -- ALTER TABLE `expenses` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `exports` -- ALTER TABLE `exports` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `faqs` -- ALTER TABLE `faqs` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `features` -- ALTER TABLE `features` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=27; -- -- AUTO_INCREMENT for table `feature_subscriptionplan` -- ALTER TABLE `feature_subscriptionplan` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; -- -- AUTO_INCREMENT for table `front_services` -- ALTER TABLE `front_services` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `front_settings` -- ALTER TABLE `front_settings` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=29; -- -- AUTO_INCREMENT for table `google_calendar_integrations` -- ALTER TABLE `google_calendar_integrations` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `google_calendar_lists` -- ALTER TABLE `google_calendar_lists` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `hospital_schedules` -- ALTER TABLE `hospital_schedules` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `hospital_type` -- ALTER TABLE `hospital_type` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `incomes` -- ALTER TABLE `incomes` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `insurances` -- ALTER TABLE `insurances` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `insurance_diseases` -- ALTER TABLE `insurance_diseases` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `investigation_reports` -- ALTER TABLE `investigation_reports` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `invoices` -- ALTER TABLE `invoices` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `invoice_items` -- ALTER TABLE `invoice_items` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `ipd_bills` -- ALTER TABLE `ipd_bills` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `ipd_charges` -- ALTER TABLE `ipd_charges` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `ipd_consultant_registers` -- ALTER TABLE `ipd_consultant_registers` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `ipd_diagnoses` -- ALTER TABLE `ipd_diagnoses` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `ipd_patient_departments` -- ALTER TABLE `ipd_patient_departments` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `ipd_payments` -- ALTER TABLE `ipd_payments` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `ipd_prescriptions` -- ALTER TABLE `ipd_prescriptions` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `ipd_prescription_items` -- ALTER TABLE `ipd_prescription_items` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `ipd_timelines` -- ALTER TABLE `ipd_timelines` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `issued_items` -- ALTER TABLE `issued_items` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `items` -- ALTER TABLE `items` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `item_categories` -- ALTER TABLE `item_categories` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `item_stocks` -- ALTER TABLE `item_stocks` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `jobs` -- ALTER TABLE `jobs` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `lab_technicians` -- ALTER TABLE `lab_technicians` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `landing_about_us` -- ALTER TABLE `landing_about_us` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `live_consultations` -- ALTER TABLE `live_consultations` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `live_meetings` -- ALTER TABLE `live_meetings` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `live_meetings_candidates` -- ALTER TABLE `live_meetings_candidates` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `lunch_breaks` -- ALTER TABLE `lunch_breaks` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `mails` -- ALTER TABLE `mails` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `media` -- ALTER TABLE `media` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34; -- -- AUTO_INCREMENT for table `medicines` -- ALTER TABLE `medicines` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `medicine_bills` -- ALTER TABLE `medicine_bills` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=316; -- -- AUTO_INCREMENT for table `modules` -- ALTER TABLE `modules` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=81; -- -- AUTO_INCREMENT for table `notice_boards` -- ALTER TABLE `notice_boards` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `notifications` -- ALTER TABLE `notifications` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `nurses` -- ALTER TABLE `nurses` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `odontograms` -- ALTER TABLE `odontograms` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `opd_diagnoses` -- ALTER TABLE `opd_diagnoses` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `opd_patient_departments` -- ALTER TABLE `opd_patient_departments` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `opd_prescriptions` -- ALTER TABLE `opd_prescriptions` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `opd_prescription_items` -- ALTER TABLE `opd_prescription_items` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `opd_timelines` -- ALTER TABLE `opd_timelines` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `operation_reports` -- ALTER TABLE `operation_reports` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `packages` -- ALTER TABLE `packages` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `package_services` -- ALTER TABLE `package_services` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `pathology_categories` -- ALTER TABLE `pathology_categories` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `pathology_parameters` -- ALTER TABLE `pathology_parameters` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `pathology_parameter_items` -- ALTER TABLE `pathology_parameter_items` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `pathology_tests` -- ALTER TABLE `pathology_tests` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `pathology_units` -- ALTER TABLE `pathology_units` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `patients` -- ALTER TABLE `patients` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `patient_admissions` -- ALTER TABLE `patient_admissions` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `patient_cases` -- ALTER TABLE `patient_cases` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `patient_diagnosis_properties` -- ALTER TABLE `patient_diagnosis_properties` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `patient_diagnosis_tests` -- ALTER TABLE `patient_diagnosis_tests` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `patient_queues` -- ALTER TABLE `patient_queues` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `payments` -- ALTER TABLE `payments` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `permissions` -- ALTER TABLE `permissions` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25; -- -- AUTO_INCREMENT for table `pharmacists` -- ALTER TABLE `pharmacists` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `postals` -- ALTER TABLE `postals` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `prescriptions` -- ALTER TABLE `prescriptions` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `prescriptions_medicines` -- ALTER TABLE `prescriptions_medicines` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `purchased_medicines` -- ALTER TABLE `purchased_medicines` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `purchase_medicines` -- ALTER TABLE `purchase_medicines` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `radiology_categories` -- ALTER TABLE `radiology_categories` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `radiology_tests` -- ALTER TABLE `radiology_tests` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `receptionists` -- ALTER TABLE `receptionists` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `sale_medicines` -- ALTER TABLE `sale_medicines` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `schedules` -- ALTER TABLE `schedules` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `schedule_days` -- ALTER TABLE `schedule_days` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `section_fives` -- ALTER TABLE `section_fives` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `section_fours` -- ALTER TABLE `section_fours` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `section_ones` -- ALTER TABLE `section_ones` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `section_threes` -- ALTER TABLE `section_threes` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `section_twos` -- ALTER TABLE `section_twos` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `services` -- ALTER TABLE `services` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `service_sliders` -- ALTER TABLE `service_sliders` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `settings` -- ALTER TABLE `settings` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=27; -- -- AUTO_INCREMENT for table `smart_patient_cards` -- ALTER TABLE `smart_patient_cards` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `sms` -- ALTER TABLE `sms` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `subscribes` -- ALTER TABLE `subscribes` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `subscriptions` -- ALTER TABLE `subscriptions` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `subscription_plans` -- ALTER TABLE `subscription_plans` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `super_admin_currency_settings` -- ALTER TABLE `super_admin_currency_settings` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `super_admin_enquiries` -- ALTER TABLE `super_admin_enquiries` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `super_admin_settings` -- ALTER TABLE `super_admin_settings` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=43; -- -- AUTO_INCREMENT for table `testimonials` -- ALTER TABLE `testimonials` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `transactions` -- ALTER TABLE `transactions` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `used_medicines` -- ALTER TABLE `used_medicines` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `user_google_event_schedules` -- ALTER TABLE `user_google_event_schedules` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `user_tenants` -- ALTER TABLE `user_tenants` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `user_zoom_credential` -- ALTER TABLE `user_zoom_credential` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `vaccinated_patients` -- ALTER TABLE `vaccinated_patients` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `vaccinations` -- ALTER TABLE `vaccinations` MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `visitors` -- ALTER TABLE `visitors` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `zoom_o_auth_credentials` -- ALTER TABLE `zoom_o_auth_credentials` MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT; -- -- Constraints for dumped tables -- -- -- Constraints for table `accountants` -- ALTER TABLE `accountants` ADD CONSTRAINT `accountants_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `accountants_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `accounts` -- ALTER TABLE `accounts` ADD CONSTRAINT `accounts_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `addresses` -- ALTER TABLE `addresses` ADD CONSTRAINT `addresses_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `advanced_payments` -- ALTER TABLE `advanced_payments` ADD CONSTRAINT `advanced_payments_patient_id_foreign` FOREIGN KEY (`patient_id`) REFERENCES `users` (`id`), ADD CONSTRAINT `advanced_payments_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `ambulances` -- ALTER TABLE `ambulances` ADD CONSTRAINT `ambulances_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `ambulance_calls` -- ALTER TABLE `ambulance_calls` ADD CONSTRAINT `ambulance_calls_ambulance_id_foreign` FOREIGN KEY (`ambulance_id`) REFERENCES `ambulances` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `ambulance_calls_patient_id_foreign` FOREIGN KEY (`patient_id`) REFERENCES `patients` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `ambulance_calls_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `appointments` -- ALTER TABLE `appointments` ADD CONSTRAINT `appointments_department_id_foreign` FOREIGN KEY (`department_id`) REFERENCES `doctor_departments` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `appointments_doctor_id_foreign` FOREIGN KEY (`doctor_id`) REFERENCES `doctors` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `appointments_patient_id_foreign` FOREIGN KEY (`patient_id`) REFERENCES `patients` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `appointments_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `appointment_transactions` -- ALTER TABLE `appointment_transactions` ADD CONSTRAINT `appointment_transactions_appointment_id_foreign` FOREIGN KEY (`appointment_id`) REFERENCES `appointments` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `appointment_transactions_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `beds` -- ALTER TABLE `beds` ADD CONSTRAINT `beds_bed_type_foreign` FOREIGN KEY (`bed_type`) REFERENCES `bed_types` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `beds_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `bed_assigns` -- ALTER TABLE `bed_assigns` ADD CONSTRAINT `bed_assigns_bed_id_foreign` FOREIGN KEY (`bed_id`) REFERENCES `beds` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `bed_assigns_ipd_patient_department_id_foreign` FOREIGN KEY (`ipd_patient_department_id`) REFERENCES `ipd_patient_departments` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `bed_assigns_patient_id_foreign` FOREIGN KEY (`patient_id`) REFERENCES `patients` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `bed_assigns_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `bed_types` -- ALTER TABLE `bed_types` ADD CONSTRAINT `bed_types_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `bills` -- ALTER TABLE `bills` ADD CONSTRAINT `bills_patient_id_foreign` FOREIGN KEY (`patient_id`) REFERENCES `patients` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `bills_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `bill_items` -- ALTER TABLE `bill_items` ADD CONSTRAINT `bill_items_bill_id_foreign` FOREIGN KEY (`bill_id`) REFERENCES `bills` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `bill_transactions` -- ALTER TABLE `bill_transactions` ADD CONSTRAINT `bill_transactions_bill_id_foreign` FOREIGN KEY (`bill_id`) REFERENCES `bills` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `bill_transactions_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `birth_reports` -- ALTER TABLE `birth_reports` ADD CONSTRAINT `birth_reports_doctor_id_foreign` FOREIGN KEY (`doctor_id`) REFERENCES `doctors` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `birth_reports_patient_id_foreign` FOREIGN KEY (`patient_id`) REFERENCES `patients` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `birth_reports_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `blood_banks` -- ALTER TABLE `blood_banks` ADD CONSTRAINT `blood_banks_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `blood_donations` -- ALTER TABLE `blood_donations` ADD CONSTRAINT `blood_donations_blood_donor_id_foreign` FOREIGN KEY (`blood_donor_id`) REFERENCES `blood_donors` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `blood_donations_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `blood_donors` -- ALTER TABLE `blood_donors` ADD CONSTRAINT `blood_donors_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `blood_issues` -- ALTER TABLE `blood_issues` ADD CONSTRAINT `blood_issues_doctor_id_foreign` FOREIGN KEY (`doctor_id`) REFERENCES `doctors` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `blood_issues_donor_id_foreign` FOREIGN KEY (`donor_id`) REFERENCES `blood_donors` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `blood_issues_patient_id_foreign` FOREIGN KEY (`patient_id`) REFERENCES `patients` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `blood_issues_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `brands` -- ALTER TABLE `brands` ADD CONSTRAINT `brands_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `call_logs` -- ALTER TABLE `call_logs` ADD CONSTRAINT `call_logs_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `case_handlers` -- ALTER TABLE `case_handlers` ADD CONSTRAINT `case_handlers_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `case_handlers_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `categories` -- ALTER TABLE `categories` ADD CONSTRAINT `categories_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `charges` -- ALTER TABLE `charges` ADD CONSTRAINT `charges_charge_category_id_foreign` FOREIGN KEY (`charge_category_id`) REFERENCES `charge_categories` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `charges_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `charge_categories` -- ALTER TABLE `charge_categories` ADD CONSTRAINT `charge_categories_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `currency_settings` -- ALTER TABLE `currency_settings` ADD CONSTRAINT `currency_settings_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `custom_fields` -- ALTER TABLE `custom_fields` ADD CONSTRAINT `custom_fields_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `death_reports` -- ALTER TABLE `death_reports` ADD CONSTRAINT `death_reports_doctor_id_foreign` FOREIGN KEY (`doctor_id`) REFERENCES `doctors` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `death_reports_patient_id_foreign` FOREIGN KEY (`patient_id`) REFERENCES `patients` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `death_reports_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `diagnosis_categories` -- ALTER TABLE `diagnosis_categories` ADD CONSTRAINT `diagnosis_categories_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `doctors` -- ALTER TABLE `doctors` ADD CONSTRAINT `doctors_doctor_department_id_foreign` FOREIGN KEY (`doctor_department_id`) REFERENCES `doctor_departments` (`id`), ADD CONSTRAINT `doctors_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `doctors_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `doctor_departments` -- ALTER TABLE `doctor_departments` ADD CONSTRAINT `doctor_departments_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `doctor_holidays` -- ALTER TABLE `doctor_holidays` ADD CONSTRAINT `doctor_holidays_doctor_id_foreign` FOREIGN KEY (`doctor_id`) REFERENCES `doctors` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `doctor_holidays_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `doctor_opd_charges` -- ALTER TABLE `doctor_opd_charges` ADD CONSTRAINT `doctor_opd_charges_doctor_id_foreign` FOREIGN KEY (`doctor_id`) REFERENCES `doctors` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `doctor_opd_charges_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `documents` -- ALTER TABLE `documents` ADD CONSTRAINT `documents_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `documents_uploaded_by_foreign` FOREIGN KEY (`uploaded_by`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `document_types` -- ALTER TABLE `document_types` ADD CONSTRAINT `document_types_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `domains` -- ALTER TABLE `domains` ADD CONSTRAINT `domains_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `employee_payrolls` -- ALTER TABLE `employee_payrolls` ADD CONSTRAINT `employee_payrolls_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `enquiries` -- ALTER TABLE `enquiries` ADD CONSTRAINT `enquiries_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `enquiries_viewed_by_foreign` FOREIGN KEY (`viewed_by`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `event_google_calendars` -- ALTER TABLE `event_google_calendars` ADD CONSTRAINT `event_google_calendars_google_calendar_list_id_foreign` FOREIGN KEY (`google_calendar_list_id`) REFERENCES `google_calendar_lists` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `event_google_calendars_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `expenses` -- ALTER TABLE `expenses` ADD CONSTRAINT `expenses_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `exports` -- ALTER TABLE `exports` ADD CONSTRAINT `exports_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `feature_subscriptionplan` -- ALTER TABLE `feature_subscriptionplan` ADD CONSTRAINT `feature_subscriptionplan_feature_id_foreign` FOREIGN KEY (`feature_id`) REFERENCES `features` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `feature_subscriptionplan_subscription_plan_id_foreign` FOREIGN KEY (`subscription_plan_id`) REFERENCES `subscription_plans` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `front_services` -- ALTER TABLE `front_services` ADD CONSTRAINT `front_services_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `front_settings` -- ALTER TABLE `front_settings` ADD CONSTRAINT `front_settings_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `google_calendar_integrations` -- ALTER TABLE `google_calendar_integrations` ADD CONSTRAINT `google_calendar_integrations_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `google_calendar_lists` -- ALTER TABLE `google_calendar_lists` ADD CONSTRAINT `google_calendar_lists_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `hospital_schedules` -- ALTER TABLE `hospital_schedules` ADD CONSTRAINT `hospital_schedules_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `incomes` -- ALTER TABLE `incomes` ADD CONSTRAINT `incomes_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `insurances` -- ALTER TABLE `insurances` ADD CONSTRAINT `insurances_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `insurance_diseases` -- ALTER TABLE `insurance_diseases` ADD CONSTRAINT `insurance_diseases_insurance_id_foreign` FOREIGN KEY (`insurance_id`) REFERENCES `insurances` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `investigation_reports` -- ALTER TABLE `investigation_reports` ADD CONSTRAINT `investigation_reports_doctor_id_foreign` FOREIGN KEY (`doctor_id`) REFERENCES `doctors` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `investigation_reports_patient_id_foreign` FOREIGN KEY (`patient_id`) REFERENCES `patients` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `investigation_reports_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `invoices` -- ALTER TABLE `invoices` ADD CONSTRAINT `invoices_patient_id_foreign` FOREIGN KEY (`patient_id`) REFERENCES `patients` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `invoices_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `invoice_items` -- ALTER TABLE `invoice_items` ADD CONSTRAINT `invoice_items_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `invoice_items_invoice_id_foreign` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `ipd_bills` -- ALTER TABLE `ipd_bills` ADD CONSTRAINT `ipd_bills_ipd_patient_department_id_foreign` FOREIGN KEY (`ipd_patient_department_id`) REFERENCES `ipd_patient_departments` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `ipd_bills_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `ipd_charges` -- ALTER TABLE `ipd_charges` ADD CONSTRAINT `ipd_charges_charge_category_id_foreign` FOREIGN KEY (`charge_category_id`) REFERENCES `charge_categories` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `ipd_charges_charge_id_foreign` FOREIGN KEY (`charge_id`) REFERENCES `charges` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `ipd_charges_ipd_patient_department_id_foreign` FOREIGN KEY (`ipd_patient_department_id`) REFERENCES `ipd_patient_departments` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `ipd_charges_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `ipd_consultant_registers` -- ALTER TABLE `ipd_consultant_registers` ADD CONSTRAINT `ipd_consultant_registers_doctor_id_foreign` FOREIGN KEY (`doctor_id`) REFERENCES `doctors` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `ipd_consultant_registers_ipd_patient_department_id_foreign` FOREIGN KEY (`ipd_patient_department_id`) REFERENCES `ipd_patient_departments` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `ipd_consultant_registers_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `ipd_diagnoses` -- ALTER TABLE `ipd_diagnoses` ADD CONSTRAINT `ipd_diagnoses_ipd_patient_department_id_foreign` FOREIGN KEY (`ipd_patient_department_id`) REFERENCES `ipd_patient_departments` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `ipd_diagnoses_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `ipd_patient_departments` -- ALTER TABLE `ipd_patient_departments` ADD CONSTRAINT `ipd_patient_departments_bed_id_foreign` FOREIGN KEY (`bed_id`) REFERENCES `beds` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `ipd_patient_departments_bed_type_id_foreign` FOREIGN KEY (`bed_type_id`) REFERENCES `bed_types` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `ipd_patient_departments_case_id_foreign` FOREIGN KEY (`case_id`) REFERENCES `patient_cases` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `ipd_patient_departments_doctor_id_foreign` FOREIGN KEY (`doctor_id`) REFERENCES `doctors` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `ipd_patient_departments_patient_id_foreign` FOREIGN KEY (`patient_id`) REFERENCES `patients` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `ipd_patient_departments_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `ipd_payments` -- ALTER TABLE `ipd_payments` ADD CONSTRAINT `ipd_payments_ipd_patient_department_id_foreign` FOREIGN KEY (`ipd_patient_department_id`) REFERENCES `ipd_patient_departments` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `ipd_payments_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `ipd_prescriptions` -- ALTER TABLE `ipd_prescriptions` ADD CONSTRAINT `ipd_prescriptions_ipd_patient_department_id_foreign` FOREIGN KEY (`ipd_patient_department_id`) REFERENCES `ipd_patient_departments` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `ipd_prescriptions_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `ipd_prescription_items` -- ALTER TABLE `ipd_prescription_items` ADD CONSTRAINT `ipd_prescription_items_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `ipd_prescription_items_ipd_prescription_id_foreign` FOREIGN KEY (`ipd_prescription_id`) REFERENCES `ipd_prescriptions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `ipd_prescription_items_medicine_id_foreign` FOREIGN KEY (`medicine_id`) REFERENCES `medicines` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `ipd_prescription_items_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `ipd_timelines` -- ALTER TABLE `ipd_timelines` ADD CONSTRAINT `ipd_timelines_ipd_patient_department_id_foreign` FOREIGN KEY (`ipd_patient_department_id`) REFERENCES `ipd_patient_departments` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `ipd_timelines_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `issued_items` -- ALTER TABLE `issued_items` ADD CONSTRAINT `issued_items_department_id_foreign` FOREIGN KEY (`department_id`) REFERENCES `departments` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `issued_items_item_category_id_foreign` FOREIGN KEY (`item_category_id`) REFERENCES `item_categories` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `issued_items_item_id_foreign` FOREIGN KEY (`item_id`) REFERENCES `items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `issued_items_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `issued_items_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `items` -- ALTER TABLE `items` ADD CONSTRAINT `items_item_category_id_foreign` FOREIGN KEY (`item_category_id`) REFERENCES `item_categories` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `items_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `item_categories` -- ALTER TABLE `item_categories` ADD CONSTRAINT `item_categories_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `item_stocks` -- ALTER TABLE `item_stocks` ADD CONSTRAINT `item_stocks_item_category_id_foreign` FOREIGN KEY (`item_category_id`) REFERENCES `item_categories` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `item_stocks_item_id_foreign` FOREIGN KEY (`item_id`) REFERENCES `items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `item_stocks_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `lab_technicians` -- ALTER TABLE `lab_technicians` ADD CONSTRAINT `lab_technicians_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `lab_technicians_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `live_consultations` -- ALTER TABLE `live_consultations` ADD CONSTRAINT `live_consultations_doctor_id_foreign` FOREIGN KEY (`doctor_id`) REFERENCES `doctors` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `live_consultations_patient_id_foreign` FOREIGN KEY (`patient_id`) REFERENCES `patients` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `live_consultations_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `live_meetings` -- ALTER TABLE `live_meetings` ADD CONSTRAINT `live_meetings_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `lunch_breaks` -- ALTER TABLE `lunch_breaks` ADD CONSTRAINT `lunch_breaks_doctor_id_foreign` FOREIGN KEY (`doctor_id`) REFERENCES `doctors` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `lunch_breaks_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `mails` -- ALTER TABLE `mails` ADD CONSTRAINT `mails_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `mails_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `medicines` -- ALTER TABLE `medicines` ADD CONSTRAINT `medicines_brand_id_foreign` FOREIGN KEY (`brand_id`) REFERENCES `brands` (`id`) ON DELETE SET NULL ON UPDATE CASCADE, ADD CONSTRAINT `medicines_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE SET NULL ON UPDATE CASCADE, ADD CONSTRAINT `medicines_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `medicine_bills` -- ALTER TABLE `medicine_bills` ADD CONSTRAINT `medicine_bills_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`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 `departments` (`id`) ON DELETE CASCADE; -- -- Constraints for table `modules` -- ALTER TABLE `modules` ADD CONSTRAINT `modules_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `notice_boards` -- ALTER TABLE `notice_boards` ADD CONSTRAINT `notice_boards_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `notifications` -- ALTER TABLE `notifications` ADD CONSTRAINT `notifications_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `notifications_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `nurses` -- ALTER TABLE `nurses` ADD CONSTRAINT `nurses_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `nurses_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `odontograms` -- ALTER TABLE `odontograms` ADD CONSTRAINT `odontograms_doctor_id_foreign` FOREIGN KEY (`doctor_id`) REFERENCES `doctors` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `odontograms_patient_id_foreign` FOREIGN KEY (`patient_id`) REFERENCES `patients` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `opd_diagnoses` -- ALTER TABLE `opd_diagnoses` ADD CONSTRAINT `opd_diagnoses_opd_patient_department_id_foreign` FOREIGN KEY (`opd_patient_department_id`) REFERENCES `opd_patient_departments` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `opd_diagnoses_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `opd_patient_departments` -- ALTER TABLE `opd_patient_departments` ADD CONSTRAINT `opd_patient_departments_case_id_foreign` FOREIGN KEY (`case_id`) REFERENCES `patient_cases` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `opd_patient_departments_doctor_id_foreign` FOREIGN KEY (`doctor_id`) REFERENCES `doctors` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `opd_patient_departments_patient_id_foreign` FOREIGN KEY (`patient_id`) REFERENCES `patients` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `opd_patient_departments_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `opd_prescriptions` -- ALTER TABLE `opd_prescriptions` ADD CONSTRAINT `opd_prescriptions_opd_patient_department_id_foreign` FOREIGN KEY (`opd_patient_department_id`) REFERENCES `opd_patient_departments` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `opd_prescriptions_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `opd_prescription_items` -- ALTER TABLE `opd_prescription_items` ADD CONSTRAINT `opd_prescription_items_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `opd_prescription_items_medicine_id_foreign` FOREIGN KEY (`medicine_id`) REFERENCES `medicines` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `opd_prescription_items_opd_prescription_id_foreign` FOREIGN KEY (`opd_prescription_id`) REFERENCES `opd_prescriptions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `opd_prescription_items_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `opd_timelines` -- ALTER TABLE `opd_timelines` ADD CONSTRAINT `opd_timelines_opd_patient_department_id_foreign` FOREIGN KEY (`opd_patient_department_id`) REFERENCES `opd_patient_departments` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `opd_timelines_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `operation_reports` -- ALTER TABLE `operation_reports` ADD CONSTRAINT `operation_reports_doctor_id_foreign` FOREIGN KEY (`doctor_id`) REFERENCES `doctors` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `operation_reports_patient_id_foreign` FOREIGN KEY (`patient_id`) REFERENCES `patients` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `operation_reports_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `packages` -- ALTER TABLE `packages` ADD CONSTRAINT `packages_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `package_services` -- ALTER TABLE `package_services` ADD CONSTRAINT `package_services_package_id_foreign` FOREIGN KEY (`package_id`) REFERENCES `packages` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `package_services_service_id_foreign` FOREIGN KEY (`service_id`) REFERENCES `services` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `pathology_categories` -- ALTER TABLE `pathology_categories` ADD CONSTRAINT `pathology_categories_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `pathology_parameters` -- ALTER TABLE `pathology_parameters` ADD CONSTRAINT `pathology_parameters_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `pathology_parameters_unit_id_foreign` FOREIGN KEY (`unit_id`) REFERENCES `pathology_units` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `pathology_parameter_items` -- ALTER TABLE `pathology_parameter_items` ADD CONSTRAINT `pathology_parameter_items_parameter_id_foreign` FOREIGN KEY (`parameter_id`) REFERENCES `pathology_parameters` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `pathology_parameter_items_pathology_id_foreign` FOREIGN KEY (`pathology_id`) REFERENCES `pathology_tests` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `pathology_tests` -- ALTER TABLE `pathology_tests` ADD CONSTRAINT `pathology_tests_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `pathology_categories` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `pathology_tests_charge_category_id_foreign` FOREIGN KEY (`charge_category_id`) REFERENCES `charge_categories` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `pathology_tests_patient_id_foreign` FOREIGN KEY (`patient_id`) REFERENCES `patients` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `pathology_tests_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `pathology_units` -- ALTER TABLE `pathology_units` ADD CONSTRAINT `pathology_units_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `patients` -- ALTER TABLE `patients` ADD CONSTRAINT `patients_template_id_foreign` FOREIGN KEY (`template_id`) REFERENCES `smart_patient_cards` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `patients_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `patients_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `patient_admissions` -- ALTER TABLE `patient_admissions` ADD CONSTRAINT `patient_admissions_bed_id_foreign` FOREIGN KEY (`bed_id`) REFERENCES `beds` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `patient_admissions_doctor_id_foreign` FOREIGN KEY (`doctor_id`) REFERENCES `doctors` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `patient_admissions_insurance_id_foreign` FOREIGN KEY (`insurance_id`) REFERENCES `insurances` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `patient_admissions_package_id_foreign` FOREIGN KEY (`package_id`) REFERENCES `packages` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `patient_admissions_patient_id_foreign` FOREIGN KEY (`patient_id`) REFERENCES `patients` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `patient_admissions_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `patient_cases` -- ALTER TABLE `patient_cases` ADD CONSTRAINT `patient_cases_doctor_id_foreign` FOREIGN KEY (`doctor_id`) REFERENCES `doctors` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `patient_cases_patient_id_foreign` FOREIGN KEY (`patient_id`) REFERENCES `patients` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `patient_cases_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `patient_diagnosis_properties` -- ALTER TABLE `patient_diagnosis_properties` ADD CONSTRAINT `patient_diagnosis_properties_patient_diagnosis_id_foreign` FOREIGN KEY (`patient_diagnosis_id`) REFERENCES `patient_diagnosis_tests` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `patient_diagnosis_tests` -- ALTER TABLE `patient_diagnosis_tests` ADD CONSTRAINT `patient_diagnosis_tests_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `diagnosis_categories` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `patient_diagnosis_tests_doctor_id_foreign` FOREIGN KEY (`doctor_id`) REFERENCES `doctors` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `patient_diagnosis_tests_patient_id_foreign` FOREIGN KEY (`patient_id`) REFERENCES `patients` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `patient_diagnosis_tests_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `patient_queues` -- ALTER TABLE `patient_queues` ADD CONSTRAINT `patient_queues_appointment_id_foreign` FOREIGN KEY (`appointment_id`) REFERENCES `appointments` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `patient_queues_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `payments` -- ALTER TABLE `payments` ADD CONSTRAINT `payments_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `payments_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `pharmacists` -- ALTER TABLE `pharmacists` ADD CONSTRAINT `pharmacists_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `pharmacists_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `postals` -- ALTER TABLE `postals` ADD CONSTRAINT `postals_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `prescriptions` -- ALTER TABLE `prescriptions` ADD CONSTRAINT `prescriptions_doctor_id_foreign` FOREIGN KEY (`doctor_id`) REFERENCES `doctors` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `prescriptions_patient_id_foreign` FOREIGN KEY (`patient_id`) REFERENCES `patients` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `prescriptions_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `prescriptions_medicines` -- ALTER TABLE `prescriptions_medicines` ADD CONSTRAINT `prescriptions_medicines_medicine_foreign` FOREIGN KEY (`medicine`) REFERENCES `medicines` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `prescriptions_medicines_prescription_id_foreign` FOREIGN KEY (`prescription_id`) REFERENCES `prescriptions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `purchased_medicines` -- ALTER TABLE `purchased_medicines` ADD CONSTRAINT `purchased_medicines_medicine_id_foreign` FOREIGN KEY (`medicine_id`) REFERENCES `medicines` (`id`) ON DELETE SET NULL ON UPDATE CASCADE, ADD CONSTRAINT `purchased_medicines_purchase_medicines_id_foreign` FOREIGN KEY (`purchase_medicines_id`) REFERENCES `purchase_medicines` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `purchased_medicines_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `purchase_medicines` -- ALTER TABLE `purchase_medicines` ADD CONSTRAINT `purchase_medicines_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `radiology_categories` -- ALTER TABLE `radiology_categories` ADD CONSTRAINT `radiology_categories_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `radiology_tests` -- ALTER TABLE `radiology_tests` ADD CONSTRAINT `radiology_tests_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `radiology_categories` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `radiology_tests_charge_category_id_foreign` FOREIGN KEY (`charge_category_id`) REFERENCES `charge_categories` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `radiology_tests_charge_id_foreign` FOREIGN KEY (`charge_id`) REFERENCES `charges` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `radiology_tests_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `receptionists` -- ALTER TABLE `receptionists` ADD CONSTRAINT `receptionists_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `receptionists_user_id_foreign` FOREIGN KEY (`user_id`) 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 `departments` (`id`) ON DELETE CASCADE; -- -- Constraints for table `schedules` -- ALTER TABLE `schedules` ADD CONSTRAINT `schedules_doctor_id_foreign` FOREIGN KEY (`doctor_id`) REFERENCES `doctors` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `schedules_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `schedule_days` -- ALTER TABLE `schedule_days` ADD CONSTRAINT `schedule_days_doctor_id_foreign` FOREIGN KEY (`doctor_id`) REFERENCES `doctors` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `schedule_days_schedule_id_foreign` FOREIGN KEY (`schedule_id`) REFERENCES `schedules` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `services` -- ALTER TABLE `services` ADD CONSTRAINT `services_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `settings` -- ALTER TABLE `settings` ADD CONSTRAINT `settings_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `smart_patient_cards` -- ALTER TABLE `smart_patient_cards` ADD CONSTRAINT `smart_patient_cards_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `sms` -- ALTER TABLE `sms` ADD CONSTRAINT `sms_send_by_foreign` FOREIGN KEY (`send_by`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `sms_send_to_foreign` FOREIGN KEY (`send_to`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `sms_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `subscriptions` -- ALTER TABLE `subscriptions` ADD CONSTRAINT `subscriptions_subscription_plan_id_foreign` FOREIGN KEY (`subscription_plan_id`) REFERENCES `subscription_plans` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `subscriptions_transaction_id_foreign` FOREIGN KEY (`transaction_id`) REFERENCES `transactions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `subscriptions_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `testimonials` -- ALTER TABLE `testimonials` ADD CONSTRAINT `testimonials_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `transactions` -- ALTER TABLE `transactions` ADD CONSTRAINT `transactions_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `transactions_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `used_medicines` -- ALTER TABLE `used_medicines` ADD CONSTRAINT `used_medicines_medicine_id_foreign` FOREIGN KEY (`medicine_id`) REFERENCES `medicines` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `used_medicines_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `users` -- ALTER TABLE `users` ADD CONSTRAINT `users_hospital_type_id_foreign` FOREIGN KEY (`hospital_type_id`) REFERENCES `hospital_type` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `users_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `user_google_event_schedules` -- ALTER TABLE `user_google_event_schedules` ADD CONSTRAINT `user_google_event_schedules_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `user_tenants` -- ALTER TABLE `user_tenants` ADD CONSTRAINT `user_tenants_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `user_tenants_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `user_zoom_credential` -- ALTER TABLE `user_zoom_credential` ADD CONSTRAINT `user_zoom_credential_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `user_zoom_credential_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `vaccinated_patients` -- ALTER TABLE `vaccinated_patients` ADD CONSTRAINT `vaccinated_patients_patient_id_foreign` FOREIGN KEY (`patient_id`) REFERENCES `patients` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `vaccinated_patients_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `vaccinated_patients_vaccination_id_foreign` FOREIGN KEY (`vaccination_id`) REFERENCES `vaccinations` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `vaccinations` -- ALTER TABLE `vaccinations` ADD CONSTRAINT `vaccinations_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `visitors` -- ALTER TABLE `visitors` ADD CONSTRAINT `visitors_tenant_id_foreign` FOREIGN KEY (`tenant_id`) REFERENCES `tenants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `zoom_o_auth_credentials` -- ALTER TABLE `zoom_o_auth_credentials` ADD CONSTRAINT `zoom_o_auth_credentials_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 */;