mindlesscloud opened a new pull request, #5147:
URL: https://github.com/apache/incubator-devlake/pull/5147

   ### Summary
   Fix the DB overflow error by changing the type of 
`_tool_jira_remotelinks.self` from `VARCHAR(255)` to `LONGTEXT`
   Now the schema looks like:
   ```SQL
   CREATE TABLE _tool_jira_remotelinks (
       created_at timestamp with time zone,
       updated_at timestamp with time zone,
       _raw_data_params character varying(255),
       _raw_data_table character varying(255),
       _raw_data_id bigint,
       _raw_data_remark text,
       connection_id bigint,
       remotelink_id bigint,
       issue_id bigint,
       raw_json jsonb,
       title text,
       issue_updated timestamp with time zone,
       url text,
       self text,
       CONSTRAINT _tool_jira_remotelinks_pkey PRIMARY KEY (connection_id, 
remotelink_id)
   );
   ```
   ### Does this close any open issues?
   Closes #5146 
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to