🔍 Database Inspector

Detailed schema, tables, and migration status

🐘 PostgreSQL Database Inspection

❌ Error Inspecting Database

connection to server at "postgresql.postgresql.svc.cluster.local" (172.16.248.88), port 5432 failed: fe_sendauth: no password supplied

🗄️ MSSQL Database Inspection

📊 Database: new-app-tm44s_db

Total Tables: 6
Schemas: 1
Database Size: 16.00 MB
Inspected: 2025-12-06T03:35:37.193406

📂 Schemas

dbo

📋 Tables

dbo.cache_stats
Rows: 3
Columns (5)
Column Type Nullable Default
id int -
cache_key nvarchar -
hit_count int ((0))
miss_count int ((0))
last_accessed datetime2 (getdate())
Sample Data (First 5 rows)
idcache_keyhit_countmiss_countlast_accessed
1posts:all002025-12-05 07:12:37.897000
2users:all002025-12-05 07:12:37.897000
3tags:all002025-12-05 07:12:37.897000
dbo.comments
Rows: 0
Columns (5)
Column Type Nullable Default
id int -
post_id int -
user_id int -
comment_text nvarchar -
created_at datetime2 (getdate())
dbo.post_tags
Rows: 0
Columns (3)
Column Type Nullable Default
post_id int -
tag_id int -
created_at datetime2 (getdate())
dbo.posts
Rows: 0
Columns (8)
Column Type Nullable Default
id int -
user_id int -
title nvarchar -
content nvarchar -
status nvarchar ('draft')
view_count int ((0))
created_at datetime2 (getdate())
updated_at datetime2 (getdate())
dbo.tags
Rows: 0
Columns (5)
Column Type Nullable Default
id int -
name nvarchar -
slug nvarchar -
description nvarchar -
created_at datetime2 (getdate())
dbo.users
Rows: 3
Columns (6)
Column Type Nullable Default
id int -
username nvarchar -
email nvarchar -
full_name nvarchar -
created_at datetime2 (getdate())
updated_at datetime2 (getdate())
Sample Data (First 5 rows)
idusernameemailfull_namecreated_atupdated_at
1john_doe[email protected]John Doe2025-12-05 07:12:37.6200002025-12-05 07:12:37.620000
2jane_smith[email protected]Jane Smith2025-12-05 07:12:37.6200002025-12-05 07:12:37.620000
3bob_wilson[email protected]Bob Wilson2025-12-05 07:12:37.6200002025-12-05 07:12:37.620000

Auto-refresh: Reload this page to see updated database information
Generated at 2025-12-06T03:35:37.369338