A schema copy is a backup of the database schema, sans the data.
A schema copy is a backup of the database schema, sans the data.
Most relational DBs have an export tool that can export the schema without the data in the tables:
- PostgreSQL features
pg_dump --schema-only - MySQL features
mysqldump -p --no-data