mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
10 lines
300 B
MySQL
10 lines
300 B
MySQL
|
CREATE TABLE hdb_catalog.hdb_query_template
|
||
|
(
|
||
|
template_name TEXT PRIMARY KEY,
|
||
|
template_defn JSONB NOT NULL,
|
||
|
comment TEXT NULL,
|
||
|
is_system_defined boolean default false
|
||
|
);
|
||
|
|
||
|
INSERT INTO hdb_catalog.hdb_table (table_schema, table_name)
|
||
|
VALUES ('hdb_catalog', 'hdb_query_template');
|