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_static_data.md
/
/
## 📦 Table: `tbl_static_data` **Module:** `configuration` **Schema:** `public` **Purpose:** Stores static templates and configuration data used across the application. **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 | | `template` | MEDIUMTEXT | YES | NULL | Template content (HTML, JSON, or text snippet) | | `name` | VARCHAR(100)| YES | NULL | Name of the static data template | --- ## 🗂️ Constraints & Indexes * **Primary Key:** `id` * **Indexes:** * `tbl_static_data_pkey` on `id` (UNIQUE, BTREE) * Consider unique index on `name` to prevent duplicate templates --- ## 🔗 Relationships * This table does not currently define explicit foreign key relationships. * Can be referenced by other modules needing template data (e.g., email templates, system messages). --- ## 🧬 ER Diagram (optional) ```dbml Table tbl_static_data { id serial [pk] template mediumtext name varchar(100) } ``` --- ## 🛠️ Sample SQL ```sql CREATE TABLE tbl_static_data ( id SERIAL PRIMARY KEY, template MEDIUMTEXT DEFAULT NULL, name VARCHAR(100) DEFAULT 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_static_data.md