mirror of
https://github.com/Dvorinka/Bookra.git
synced 2026-06-03 20:13:00 +00:00
7d3e3448cf
Implement a complete SMS messaging system including: - Integration with SMS Manager.cz API for sending messages. - Metered billing via Stripe using monthly aggregate invoice items. - Backend services for managing SMS settings, usage logging, and monthly reporting. - Database migrations for tenant settings, usage logs, and monthly reports. - Frontend dashboard components for SMS configuration, usage tracking, and history. - Support for customer phone numbers in the booking flow. Includes new migrations, backend services, and frontend UI components.
6 lines
155 B
SQL
6 lines
155 B
SQL
-- +goose Up
|
|
ALTER TABLE bookings ADD COLUMN IF NOT EXISTS customer_phone text;
|
|
|
|
-- +goose Down
|
|
ALTER TABLE bookings DROP COLUMN IF EXISTS customer_phone;
|