mirror of
https://github.com/zhigang1992/graphql-engine.git
synced 2026-05-29 17:27:07 +08:00
* Separate DB and metadata migrations * Refactor Migrate.hs to generate list of migrations at compile-time * Replace ginger with shakespeare to improve performance * Improve migration log messages
7 lines
127 B
SQL
7 lines
127 B
SQL
CREATE TABLE hdb_catalog.remote_schemas (
|
|
id BIGSERIAL PRIMARY KEY,
|
|
name TEXT UNIQUE,
|
|
definition JSON,
|
|
comment TEXT
|
|
);
|