Skip to content

Instantly share code, notes, and snippets.

@Geisson19
Created November 29, 2023 14:38
Show Gist options
  • Save Geisson19/f397b2f9c1ae3138947f1906883f4891 to your computer and use it in GitHub Desktop.
Save Geisson19/f397b2f9c1ae3138947f1906883f4891 to your computer and use it in GitHub Desktop.
disabling insert triggers
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