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