-- 006_seating_hfh.sql -- Add hand-for-hand columns for table-level completion tracking -- Tournament-level hand-for-hand counter ALTER TABLE tournaments ADD COLUMN hand_for_hand_hand_number INTEGER NOT NULL DEFAULT 0; -- Table-level hand completion tracking ALTER TABLE tables ADD COLUMN hand_completed INTEGER NOT NULL DEFAULT 0;