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