bmc_hub/migrations/122_telefoni_user_phone_ip.sql
Christian 0831715d3a feat: add SMS service and frontend integration
- Implement SmsService class for sending SMS via CPSMS API.
- Add SMS sending functionality in the frontend with validation and user feedback.
- Create database migrations for SMS message storage and telephony features.
- Introduce telephony settings and user-specific configurations for click-to-call functionality.
- Enhance user experience with toast notifications for incoming calls and actions.
2026-02-14 02:26:29 +01:00

7 lines
214 B
SQL

-- Migration 122: Per-user phone IP for telephony
ALTER TABLE users
ADD COLUMN IF NOT EXISTS telefoni_phone_ip VARCHAR(64);
CREATE INDEX IF NOT EXISTS idx_users_telefoni_phone_ip ON users(telefoni_phone_ip);