e791fc2f4a
PR Checks / test-and-build (pull_request) Successful in 5m3s
Convert join/leave interaction commands to PlatformUser, PlatformGroup, and PlatformMessageRef. Persist and look up participants by platform identity while keeping Telegram callbacks intact. Add V017 migration and TDD coverage. Bump version to 2.1.1.
10 lines
432 B
SQL
10 lines
432 B
SQL
-- =============================================================
|
|
-- V017: Allow platform-neutral players
|
|
-- =============================================================
|
|
-- Legacy Telegram identity columns remain for backward compatibility,
|
|
-- but non-Telegram platform users do not have Telegram ids.
|
|
-- =============================================================
|
|
|
|
ALTER TABLE players
|
|
ALTER COLUMN telegram_id DROP NOT NULL;
|