device_auth_providers
This data as json
0 records
CREATE TABLE device_auth_providers ( user_id TEXT NOT NULL, device_id TEXT NOT NULL, auth_provider_id TEXT NOT NULL, auth_provider_session_id TEXT NOT NULL ); CREATE INDEX device_auth_providers_devices ON device_auth_providers (user_id, device_id); CREATE INDEX device_auth_providers_sessions ON device_auth_providers (auth_provider_id, auth_provider_session_id);