uawdijnntqw1x1x1
IP : 216.73.216.55
Hostname : srv913213
Kernel : Linux srv913213 5.15.0-190-generic #200-Ubuntu SMP Fri Aug 7 15:06:04 UTC 2026 x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
OS : Linux
PATH:
/
var
/
www
/
krbed.in
/
..
/
yapcute.com
/
..
/
talentgenesis_admin_backend
/
docs
/
db
/
tbl_candidate_source.md
/
/
## 📦 Table: `tbl_candidate_source` **Module:** `recruitment` **Schema:** `public` **Purpose:** Stores candidate sources (e.g., job portal, referral, walk-in) for job applications. **Created By:** Mahendran T **Created On:** 2025-07-31 **Last Modified:** 2025-07-31 --- ## 🧩 Columns | Column Name | Data Type | Nullable | Default | Description | |---------------|--------------|----------|---------|---------------------------------------------| | `id` | SERIAL | NO | auto-increment | Primary key | | `source_name` | VARCHAR(100) | NO | NULL | Name of the candidate source (e.g., LinkedIn, Referral) | --- ## 🗂️ Constraints & Indexes * **Primary Key:** `id` * **Indexes:** * `tbl_candidate_source_pkey` on `id` (UNIQUE, BTREE) * Consider index on `source_name` if searching/filtering frequently --- ## 🔗 Relationships | Related Table | Relationship Type | Foreign Key | Description | |-----------------|------------------|-----------------------------------------------|----------------------------------------------| | `tbl_applied_jobs` | One-to-Many | `tbl_applied_jobs.candidate_source_id → tbl_candidate_source.id` | Each source can have many applied jobs | --- ## 🧬 ER Diagram (optional) ```dbml Table tbl_candidate_source { id serial [pk] source_name varchar(100) } Ref: tbl_applied_jobs.candidate_source_id > tbl_candidate_source.id --- ``` ## 🛠️ Sample SQL ```sql CREATE TABLE tbl_candidate_source ( id SERIAL PRIMARY KEY, source_name VARCHAR(100) NOT NULL ); ``` --- ## 🕓 Change History | Date | Author | Change Description | | ---------- | ----------- | --------------------------- | | 2025-07-31 | Mahendran | Initial documentation draft |
/var/www/krbed.in/../yapcute.com/../talentgenesis_admin_backend/docs/db/tbl_candidate_source.md