mykhailoshevchenko commented on issue #8497:
URL: 
https://github.com/apache/incubator-devlake/issues/8497#issuecomment-3191346909

   @klesh 
   
   Workaround that unblocked me - I added the column to _tool_circleci_jobs and 
_tool_circleci_workflows tables and syncronized it with created_at field. Not 
sure whether it won't break anything in the future, but so far it works
   ```
   ALTER TABLE _tool_circleci_jobs
     ADD COLUMN created_date DATETIME(3)
     GENERATED ALWAYS AS (created_at) STORED;
   CREATE INDEX idx_circleci_jobs_created_date ON _tool_circleci_jobs 
(created_date);
   
   ```


-- 
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: dev-unsubscr...@devlake.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to