feat: 시계 reconciliation 워커와 명령 경계 완성

This commit is contained in:
2026-09-03 09:40:48 +00:00
parent ae7d55ef47
commit a3e2bf90ae
46 changed files with 3011 additions and 219 deletions
@@ -0,0 +1,15 @@
ALTER TABLE input_event
ADD COLUMN accepted_deadline_generation BIGINT,
ADD COLUMN processing_game_tick BIGINT,
ADD COLUMN processing_clock_revision BIGINT,
ADD COLUMN processing_deadline_generation BIGINT;
ALTER TABLE input_event
ADD CONSTRAINT input_event_accepted_clock_revision_positive
CHECK (accepted_clock_revision IS NULL OR accepted_clock_revision > 0),
ADD CONSTRAINT input_event_accepted_deadline_generation_positive
CHECK (accepted_deadline_generation IS NULL OR accepted_deadline_generation > 0),
ADD CONSTRAINT input_event_processing_clock_revision_positive
CHECK (processing_clock_revision IS NULL OR processing_clock_revision > 0),
ADD CONSTRAINT input_event_processing_deadline_generation_positive
CHECK (processing_deadline_generation IS NULL OR processing_deadline_generation > 0);