Created
November 29, 2023 14:38
-
-
Save Geisson19/f397b2f9c1ae3138947f1906883f4891 to your computer and use it in GitHub Desktop.
disabling insert triggers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ALTER TABLE "MerchantCustomerOrder" | |
DISABLE TRIGGER webhook_new_merchant_customer_order_discord; | |
ALTER TABLE "Merchant" | |
DISABLE TRIGGER webhook_new_merchant_discord; | |
ALTER TABLE "Order" | |
DISABLE TRIGGER webhook_new_order_discord; | |
ALTER TABLE "UserProfile" | |
DISABLE TRIGGER webhook_new_user_discord; | |
ALTER TABLE "Order" | |
DISABLE TRIGGER webhook_order_cancellation_message; | |
ALTER TABLE "Order" | |
DISABLE TRIGGER webhook_order_dispatch_message; | |
ALTER TABLE "OrderItem" | |
DISABLE TRIGGER webhook_order_item_update_pricing; | |
ALTER TABLE "Order" | |
DISABLE TRIGGER webhook_order_update_pricing; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment