- Updated the CSV import logic to include SAVEPOINT management, allowing for better error handling during the vitals baseline import process. - Enhanced the SQL migration script to drop existing CHECK constraints related to the 'source' field, ensuring compatibility with the new universal CSV import. - Incremented DB_SCHEMA_VERSION to "20260409c" to reflect these changes and improve the import process reliability.
21 lines
670 B
SQL
21 lines
670 B
SQL
-- Idempotent: erneute Bereinigung der source-CHECK, falls 048 zuvor nicht griff oder nur teilweise lief.
|
|
DO $$
|
|
DECLARE
|
|
r RECORD;
|
|
BEGIN
|
|
FOR r IN
|
|
SELECT c.conname
|
|
FROM pg_constraint c
|
|
JOIN pg_class t ON c.conrelid = t.oid
|
|
WHERE t.relname = 'vitals_baseline'
|
|
AND c.contype = 'c'
|
|
AND pg_get_constraintdef(c.oid) ILIKE '%source%'
|
|
AND pg_get_constraintdef(c.oid) ILIKE '%IN %'
|
|
LOOP
|
|
EXECUTE format('ALTER TABLE vitals_baseline DROP CONSTRAINT %I', r.conname);
|
|
END LOOP;
|
|
END $$;
|
|
|
|
ALTER TABLE vitals_baseline ADD CONSTRAINT vitals_baseline_source_check
|
|
CHECK (source IN ('manual', 'apple_health', 'garmin', 'withings', 'csv'));
|