Skip to content

Commit

Permalink
Add donors to tables excluded from DB export
Browse files Browse the repository at this point in the history
  • Loading branch information
rakyi committed Dec 6, 2024
1 parent 93a6edf commit bafb990
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion db/exportMetadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,12 @@ const filePath =
? "/tmp/owid_metadata.sql"
: "/tmp/owid_metadata_with_passwords.sql")

const excludeTables = ["sessions", "dataset_files", "analytics_pageviews"]
const excludeTables = [
"analytics_pageviews",
"dataset_files",
"donors",
"sessions",
]

async function dataExport(): Promise<void> {
console.log(`Exporting database structure and metadata to ${filePath}...`)
Expand Down

0 comments on commit bafb990

Please sign in to comment.