From ee7b099deb23786fa6a2bf455fb1c363830a0f79 Mon Sep 17 00:00:00 2001 From: wish Date: Thu, 10 Apr 2025 23:33:40 +1000 Subject: [PATCH] Create 25-fix-rasta-id.sql --- schemas/patch-schema/25-fix-rasta-id.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 schemas/patch-schema/25-fix-rasta-id.sql diff --git a/schemas/patch-schema/25-fix-rasta-id.sql b/schemas/patch-schema/25-fix-rasta-id.sql new file mode 100644 index 000000000..6de8bb6f4 --- /dev/null +++ b/schemas/patch-schema/25-fix-rasta-id.sql @@ -0,0 +1,5 @@ +BEGIN; + +CREATE SEQUENCE IF NOT EXISTS public.rasta_id_seq; + +END;