mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 13:02:11 +03:00
40 lines
602 B
YAML
40 lines
602 B
YAML
|
type: bulk
|
||
|
args:
|
||
|
|
||
|
#Drop relationships
|
||
|
- type: mssql_drop_relationship
|
||
|
args:
|
||
|
source: mssql
|
||
|
table:
|
||
|
name: author
|
||
|
relationship: articles
|
||
|
|
||
|
- type: mssql_drop_relationship
|
||
|
args:
|
||
|
source: mssql
|
||
|
table:
|
||
|
name: article
|
||
|
relationship: author
|
||
|
|
||
|
#Untrack tables
|
||
|
- type: mssql_untrack_table
|
||
|
args:
|
||
|
source: mssql
|
||
|
table:
|
||
|
name: author
|
||
|
cascade: true
|
||
|
|
||
|
- type: mssql_untrack_table
|
||
|
args:
|
||
|
source: mssql
|
||
|
table:
|
||
|
name: article
|
||
|
cascade: true
|
||
|
|
||
|
- type: mssql_untrack_table
|
||
|
args:
|
||
|
source: mssql
|
||
|
table:
|
||
|
name: numerics
|
||
|
cascade: true
|