MED-103: add booking functionality

This commit is contained in:
Helena
2025-09-17 18:11:13 +03:00
parent 7c92b787ce
commit 22f7fa134b
44 changed files with 1923 additions and 479 deletions

View File

@@ -0,0 +1,11 @@
ALTER TABLE medreport.connected_online_providers ADD COLUMN key text not null DEFAULT ''; -- avoid conflict with already existing data, will be filled on next sync
ALTER TABLE medreport.connected_online_providers
ALTER key DROP DEFAULT;
ALTER TABLE medreport.connected_online_providers ADD COLUMN address text not null DEFAULT '';
ALTER TABLE medreport.connected_online_providers
ALTER key DROP DEFAULT;
ALTER TABLE medreport.connected_online_services
ALTER COLUMN sync_id TYPE bigint
USING sync_id::bigint;