32 lines
566 B
PL/PgSQL
32 lines
566 B
PL/PgSQL
BEGIN;
|
|
|
|
|
|
-- mock sync group listings
|
|
|
|
DROP TABLE mock_sync_group_listings;
|
|
DROP TABLE mock_sync_groups;
|
|
|
|
|
|
-- mock stores
|
|
|
|
DROP TABLE mock_store_ebay;
|
|
DROP TABLE mock_store_walmart_marketplace;
|
|
DROP TABLE mock_store_amazon;
|
|
DROP TABLE mock_store_big_cartel;
|
|
DROP TABLE mock_store_ecwid;
|
|
DROP TABLE mock_store_zoho;
|
|
DROP TABLE mock_store_square_online;
|
|
DROP TABLE mock_store_squarespace;
|
|
DROP TABLE mock_store_wix;
|
|
DROP TABLE mock_store_woo_commerce;
|
|
DROP TABLE mock_store_shopify;
|
|
DROP TABLE mock_store_tiktok;
|
|
|
|
|
|
-- mock accounts
|
|
|
|
DROP TABLE mock_accounts;
|
|
|
|
|
|
COMMIT;
|