mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-19 05:21:47 +03:00
8f6b19d6f1
### Description What component does this PR affect? - [x] Server ### Related Issue #494 ### Solution and Design Use `quote_ident()` SQL function over `constraint_name` in insert trigger function definition. ### Type - [x] Bug fix (non-breaking change which fixes an issue)
35 lines
462 B
YAML
35 lines
462 B
YAML
type: bulk
|
|
args:
|
|
#Drop relationship first
|
|
- type: drop_relationship
|
|
args:
|
|
table:
|
|
name: author
|
|
schema: public
|
|
relationship: articles
|
|
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
drop table address
|
|
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
drop table resident
|
|
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
drop table article
|
|
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
drop table author
|
|
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
drop table "Company"
|