tonjo commented on issue #24247: URL: https://github.com/apache/airflow/issues/24247#issuecomment-1148382508
> here is the squences in my DB (2.31 and 2.32) that you can create manually > Nice "patch", I think another sequence `ab_role_id_seq` is missing, though: ``` -- Sequence structure for ab_role_id_seq DROP SEQUENCE IF EXISTS ab_role_id_seq; CREATE SEQUENCE ab_role_id_seq start with 1 minvalue 1 maxvalue 9223372036854775806 increment by 1 cache 1000 nocycle ENGINE = InnoDB; SELECT SETVAL(ab_role_id_seq, 1001, 0); ``` -- 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]
