Skip to content

Commit 0c10b8c

Browse files
authored
Change column type of external_id in zendesk_ticket table to text #37 (#37)
1 parent f09871f commit 0c10b8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zendesk/table_zendesk_ticket.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ func tableZendeskTicket() *plugin.Table {
3232
{Name: "description", Type: proto.ColumnType_STRING, Description: "Read-only first comment on the ticket. When creating a ticket, use comment to set the description."},
3333
{Name: "due_at", Type: proto.ColumnType_TIMESTAMP, Description: "If this is a ticket of type \"task\" it has a due date. Due date format uses ISO 8601 format."},
3434
{Name: "email_cc_ids", Type: proto.ColumnType_JSON, Description: "The ids of agents or end users currently CC'ed on the ticket."},
35-
{Name: "external_id", Type: proto.ColumnType_INT, Description: "An id you can use to link Zendesk Support tickets to local records"},
35+
{Name: "external_id", Type: proto.ColumnType_STRING, Description: "An id you can use to link Zendesk Support tickets to local records"},
3636
{Name: "follower_ids", Type: proto.ColumnType_JSON, Description: "The ids of agents currently following the ticket."},
3737
{Name: "followup_ids", Type: proto.ColumnType_JSON, Description: "The ids of the followups created from this ticket. Ids are only visible once the ticket is closed"},
3838
{Name: "forum_topic_id", Type: proto.ColumnType_INT, Description: "The topic in the Zendesk Web portal this ticket originated from, if any. The Web portal is deprecated"},

0 commit comments

Comments
 (0)