Skip to content

Database Tables

Database Tables provides a view into the database structure and data for troubleshooting.

⚠️ Developer Access Only

This page is only accessible to users with developer privileges.

⚠️ Warning

This is a read-only view. Direct database modifications should be done through proper channels.

Overview

View database tables, their structure, and data for debugging and verification purposes.

Page Layout

  • Table List - All database tables
  • Table Details - Selected table info
  • Data Browser - View table data
  • Query Builder - Build simple queries

Table Information

For each table:

InfoDescription
Table NameName of the table
ColumnsColumn definitions
Row CountNumber of records
SizeTable size
IndexesIndex information

Common Tasks

Viewing Table Structure

  1. Go to DeveloperToolsDatabase Tables
  2. Select table from list
  3. View:
    • Column names
    • Data types
    • Constraints
    • Indexes

Browsing Table Data

  1. Select table
  2. Click Browse Data
  3. View records
  4. Use pagination for large tables
  5. Search/filter as needed

Exporting Data

  1. Select table
  2. Apply filters if needed
  3. Click Export
  4. Choose format
  5. Download file

Data Types

Common column types:

TypeDescription
VARCHARText strings
INTEGERWhole numbers
DECIMALDecimal numbers
TIMESTAMPDate and time
BOOLEANTrue/false
JSONJSON data

Search and Filter

  • Search by column value
  • Filter by conditions
  • Sort by any column
  • Limit result count

Tips

  • Read Only - Don't attempt writes
  • Performance - Be careful with large tables
  • Sensitive Data - Respect data privacy
  • Document Queries - Save useful queries
  • Use Indexes - Query indexed columns

💡 Note: This is for viewing only. Data modifications should go through the application.

Released under the MIT License.