Skip to content
This repository was archived by the owner on Feb 11, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/db_extractor_full.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,8 @@ def db_extractor():
"archived_access_codes",
"schema_migration",
"audit_history_tableslist",
"audit_history",
"v_locations",
]

# S3 bucket upload location
Expand Down
2 changes: 1 addition & 1 deletion src/db_schema_dump.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def db_schema_dump():
data = {}

# Get a list of all tables in the database
cursor.execute("SELECT table_name FROM information_schema.tables WHERE table_schema = 'public'")
cursor.execute("SELECT table_name FROM information_schema.tables WHERE table_schema = 'public' AND table_name NOT in ('audit_history','v_locations') ")
tables = cursor.fetchall()

# For each table, get a list of its columns
Expand Down