common/dal/schema/000018_init.down.sql

8 lines
197 B
MySQL
Raw Normal View History

2024-06-27 19:15:13 +00:00
DROP TABLE IF EXISTS tgAccounts;
DO $$
BEGIN
IF EXISTS (SELECT 1 FROM pg_type WHERE typname = 'tgAccountStatus') THEN
DROP TYPE TgAccountStatus;
END IF;
END $$;