mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 21:12:09 +03:00
955db8ab11
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4413 Co-authored-by: Karthikeyan Chinnakonda <15602904+codingkarthik@users.noreply.github.com> GitOrigin-RevId: 721fae15587bdab6f27b8d1189fe6e41c42097e7
16 lines
248 B
YAML
16 lines
248 B
YAML
type: run_sql
|
|
args:
|
|
sql: |
|
|
create table hge_tests.test_t1(
|
|
c1 int,
|
|
c2 text
|
|
);
|
|
create table hge_tests."TEST_T2"(
|
|
c1 int,
|
|
c2 text
|
|
);
|
|
create table "Test_T3"(
|
|
c1 int,
|
|
c2 text
|
|
);
|