Fehler behebung

This commit is contained in:
Timo Knuth
2025-12-03 11:51:00 +01:00
parent d2953fd0d9
commit 30ecc292cd
20 changed files with 379 additions and 62 deletions

View File

@@ -0,0 +1,12 @@
-- Create missing sequence for commercials_json serialId
-- This sequence is required for generating unique serialId values for commercial property listings
CREATE SEQUENCE IF NOT EXISTS commercials_json_serial_id_seq START WITH 100000;
-- Verify the sequence was created
SELECT sequence_name, start_value, last_value
FROM information_schema.sequences
WHERE sequence_name = 'commercials_json_serial_id_seq';
-- Also verify all sequences to check if business listings sequence exists
\ds