From ce399bff1a06e8d789a74c1cb0db3ee8adb54e0f Mon Sep 17 00:00:00 2001 From: Christopher Lenke <christopher.lenke@uni-bielefeld.de> Date: Tue, 24 Sep 2024 21:37:17 +0200 Subject: [PATCH] 24.09.2024 --- Basic tables/Sequences/descent.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Basic tables/Sequences/descent.txt diff --git a/Basic tables/Sequences/descent.txt b/Basic tables/Sequences/descent.txt new file mode 100644 index 0000000..35854aa --- /dev/null +++ b/Basic tables/Sequences/descent.txt @@ -0,0 +1,11 @@ +-- basics.descent_id_seq definition + +-- DROP SEQUENCE basics.descent_id_seq; + +CREATE SEQUENCE basics.descent_id_seq + INCREMENT BY 1 + MINVALUE 1 + MAXVALUE 9223372036854775807 + START 162 + CACHE 1 + NO CYCLE; \ No newline at end of file -- GitLab