forked-synapse/synapse/storage/schema/full_schemas
Amber H. Brown ed872db8df fix maybe
2019-06-07 02:53:47 +10:00
..
16 Remove unused server_tls_certificates functions (#5028) 2019-04-08 21:50:18 +01:00
54 fix maybe 2019-06-07 02:53:47 +10:00
README.txt add more comments 2019-06-06 04:20:35 +10:00

Building full schema dumps
==========================

These schemas need to be made from a database that has had all background updates run.

Postgres
--------

$ pg_dump --format=plain --schema-only --no-tablespaces --no-acl --no-owner $DATABASE_NAME| sed -e '/^--/d' -e 's/public\.//g' -e '/^SET /d' -e '/^SELECT /d' > full.sql.postgres

SQLite
------

$ sqlite3 $DATABASE_FILE ".schema" > full.sql.sqlite

After
-----

Delete the CREATE statements for "sqlite_stat1", "schema_version", "applied_schema_deltas", and "applied_module_schemas".