mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
5bc0355bdd
GitOrigin-RevId: abd7303aaf8e7a8739fd10574249aec450082ef8
22 lines
436 B
YAML
22 lines
436 B
YAML
type: bulk
|
|
args:
|
|
|
|
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
CREATE TABLE "user address" (
|
|
id serial primary key,
|
|
name text unique,
|
|
config jsonb
|
|
);
|
|
ALTER INDEX "user address_pkey" RENAME TO user_address_pkey;
|
|
ALTER INDEX "user address_name_key" RENAME TO user_address_name_key;
|
|
|
|
- type: track_table
|
|
version: 2
|
|
args:
|
|
table: user address
|
|
configuration:
|
|
custom_name: user_address
|