save log offeset so that the master can also log without dropping worker log lines
All checks were successful
/ release (push) Successful in 1m4s

This commit is contained in:
Samuel Lorch 2024-07-06 15:59:34 +02:00
parent 78ab8c9daf
commit 24e11d9103
3 changed files with 6 additions and 2 deletions

View file

@ -0,0 +1,2 @@
ALTER TABLE tasks
DROP IF EXISTS log_offset;

View file

@ -0,0 +1,2 @@
ALTER TABLE tasks
ADD log_offset integer NOT NULL DEFAULT COALESCE(CARDINALITY(log),0);