▲ | physicles 4 days ago | |
Are there good tools that can dump a database schema to files that are human- and AI-readable? We use migrations as the source of truth for the prod database schema, but they’re also a pain when you want to just see the latest version of a table or a stored procedure. | ||
▲ | sgarland 3 days ago | parent [-] | |
mysqldump --nodata pg_dump --schema-only Read tool docs for other options, like restricting to a specific DB or table, but that’s the basic gist of it. |