MED-103: add booking functionality
This commit is contained in:
11
supabase/migrations/20250908092531_add_clinic_key.sql
Normal file
11
supabase/migrations/20250908092531_add_clinic_key.sql
Normal 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;
|
||||
Reference in New Issue
Block a user