mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
94102c0460
* Add downgrade command * Add docs per @lexi-lambda's suggestions * make tests pass * Update hdb_version once, from Haskell * more work based on feedback * Improve the usage message * Small docs changes * Test downgrades exist for each tag * Update downgrading.rst * Use git-log to find tags which are ancestors of the current commit Co-authored-by: Vamshi Surabhi <0x777@users.noreply.github.com>
5 lines
250 B
SQL
5 lines
250 B
SQL
DELETE FROM hdb_catalog.hdb_table WHERE (table_schema, table_name)
|
|
IN (('hdb_catalog', 'hdb_query_collection'), ('hdb_catalog', 'hdb_allowlist'));
|
|
|
|
DROP TABLE IF EXISTS hdb_catalog.hdb_allowlist;
|
|
DROP TABLE IF EXISTS hdb_catalog.hdb_query_collection; |