2018-09-18 09:21:57 +03:00
|
|
|
type: bulk
|
|
|
|
args:
|
|
|
|
#Drop relationship first
|
|
|
|
- type: drop_relationship
|
|
|
|
args:
|
|
|
|
relationship: articles
|
|
|
|
table:
|
|
|
|
schema: public
|
|
|
|
name: author
|
2019-04-08 10:22:38 +03:00
|
|
|
|
2021-03-03 16:02:00 +03:00
|
|
|
- type: drop_relationship
|
|
|
|
args:
|
|
|
|
relationship: detail_manual
|
|
|
|
table:
|
|
|
|
schema: public
|
|
|
|
name: author
|
|
|
|
|
|
|
|
- type: drop_relationship
|
|
|
|
args:
|
|
|
|
relationship: detail_fk
|
|
|
|
table:
|
|
|
|
schema: public
|
|
|
|
name: author
|
|
|
|
|
|
|
|
- type: run_sql
|
|
|
|
args:
|
|
|
|
sql: |
|
|
|
|
drop table author_detail cascade
|
|
|
|
cascade: true
|
2018-09-18 09:21:57 +03:00
|
|
|
- type: run_sql
|
|
|
|
args:
|
|
|
|
sql: |
|
2020-02-04 18:34:17 +03:00
|
|
|
drop table article cascade
|
|
|
|
cascade: true
|
2018-09-18 09:21:57 +03:00
|
|
|
- type: run_sql
|
|
|
|
args:
|
|
|
|
sql: |
|
|
|
|
drop table author
|
2020-02-04 18:34:17 +03:00
|
|
|
cascade: true
|