FULL TABLE OF DBDUMP
FULL TABLE OF DBDUMP
customer_details
├── id (INT, Primary Key)
├── customer_id (VARCHAR) - Unique identifier for the customer
├── customerType (VARCHAR) - Type of customer (e.g., Individual,
Business)
├── gender (VARCHAR) - Gender of the customer (e.g., Male, Female)
├── dob (DATE) - Date of birth of the customer
├── gstNo (VARCHAR) - GST Number (for business customers)
├── phoneNo (VARCHAR) - Customer's phone number
├── usrConsent (BOOLEAN) - User consent for data processing
├── address1 (VARCHAR) - First line of customer's address
├── address2 (VARCHAR) - Second line of customer's address (optional)
├── address3 (VARCHAR) - Third line of customer's address (optional)
├── city (VARCHAR) - Customer's city
├── district (VARCHAR) - District where customer resides
├── state (VARCHAR) - State of the customer
├── country (VARCHAR) - Country of the customer
├── pincode (VARCHAR) - Postal code of customer's address
├── kycFlag (BOOLEAN) - Flag if customer completed KYC
├── status (VARCHAR) - Current customer status (e.g., Active, Inactive)
└── created (TIMESTAMP) - Timestamp when customer was created or
registered
Customers
Country
├── id (INT, Primary Key, AUTO_INCREMENT, UNSIGNED) - Unique
identifier for the country record
├── country (VARCHAR(255)) - Name of the country
├── status (ENUM('Active', 'Inactive')) - Status of the country
(defaults to 'Active')
├── created (TIMESTAMP) - Timestamp when the record was
created (defaults to CURRENT_TIMESTAMP)
cashfree_payment_notification