troyharvey commented on issue #26497: URL: https://github.com/apache/airflow/issues/26497#issuecomment-1262345264
Thanks for the tip @sterling-jackson. Your suggestion resolved this one for us. If you use this solution alter the `START WITH` based on the max id in your tables. ``` ALTER TABLE public.ab_view_menu ALTER id ADD GENERATED ALWAYS AS IDENTITY (START WITH 300); ALTER TABLE public.ab_permission_view ALTER id ADD GENERATED ALWAYS AS IDENTITY (START WITH 4000); ALTER TABLE public.ab_permission_view_role ALTER id ADD GENERATED ALWAYS AS IDENTITY (START WITH 3000); ``` -- 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]
