mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 09:51:59 +03:00
17 lines
255 B
YAML
17 lines
255 B
YAML
type: bulk
|
|
args:
|
|
|
|
#Test table
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
create table "nullPrefixTestTable"(
|
|
id serial primary key,
|
|
"nullName" text
|
|
);
|
|
- type: track_table
|
|
args:
|
|
schema: public
|
|
name: "nullPrefixTestTable"
|
|
|