-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[connectors] Remove unnecessary columns in zendesk_tickets (#8854)
* ♻️ remove unnecessary columns in zendesk tickets * 🚩 add migration script * fix: remove dropped fields from ticket creation * ♻️ remove `commonTicketData` and equivalents to prevent hiding TS errors
- Loading branch information
1 parent
44f3f72
commit 56e3795
Showing
5 changed files
with
33 additions
and
49 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
-- Migration created on Nov 22, 2024 | ||
ALTER TABLE "zendesk_tickets" DROP COLUMN "assigneeId"; | ||
ALTER TABLE "zendesk_tickets" DROP COLUMN "groupId"; | ||
ALTER TABLE "zendesk_tickets" DROP COLUMN "organizationId"; |
This file contains 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
This file contains 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
This file contains 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
This file contains 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