mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
7 lines
127 B
MySQL
7 lines
127 B
MySQL
|
CREATE TABLE hdb_catalog.remote_schemas (
|
||
|
id BIGSERIAL PRIMARY KEY,
|
||
|
name TEXT UNIQUE,
|
||
|
definition JSON,
|
||
|
comment TEXT
|
||
|
);
|