2019-10-18 11:29:47 +03:00
|
|
|
type: bulk
|
|
|
|
args:
|
|
|
|
- type: run_sql
|
|
|
|
args:
|
|
|
|
sql: |
|
|
|
|
DROP FUNCTION fetch_articles(text, author);
|
2021-07-07 14:58:37 +03:00
|
|
|
DROP FUNCTION fetch_articles_plain(author);
|
2019-10-18 11:29:47 +03:00
|
|
|
DROP FUNCTION full_name(author);
|
|
|
|
DROP TABLE article;
|
|
|
|
DROP TABLE author;
|
2019-11-07 17:39:48 +03:00
|
|
|
DROP FUNCTION locations_distance(json, locations);
|
|
|
|
DROP TABLE locations;
|
2020-01-11 07:05:07 +03:00
|
|
|
DROP FUNCTION get_sum(float_test);
|
2021-09-30 14:26:46 +03:00
|
|
|
DROP FUNCTION get_sum_offset(float_test, json);
|
2020-01-11 07:05:07 +03:00
|
|
|
DROP TABLE float_test;
|
2019-10-18 11:29:47 +03:00
|
|
|
cascade: true
|