]> git.ipfire.org Git - pbs.git/commitdiff
db: Drop the settings table
authorMichael Tremer <michael.tremer@ipfire.org>
Wed, 5 Feb 2025 17:13:28 +0000 (17:13 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Wed, 5 Feb 2025 17:13:28 +0000 (17:13 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/database.sql

index bee2ec83ef4f6ce387c0fcea05b2a4e52a10832f..049eaba1de0e4ac3c7ef6f5ad2ca270b5ed9a8b1 100644 (file)
@@ -928,16 +928,6 @@ CREATE SEQUENCE public.sessions_id_seq
 ALTER SEQUENCE public.sessions_id_seq OWNED BY public.sessions.id;
 
 
---
--- Name: settings; Type: TABLE; Schema: public; Owner: -
---
-
-CREATE TABLE public.settings (
-    k text NOT NULL,
-    v text NOT NULL
-);
-
-
 --
 -- Name: source_commit_jobs; Type: TABLE; Schema: public; Owner: -
 --
@@ -1849,13 +1839,6 @@ CREATE INDEX repository_builds_repo_id ON public.repository_builds USING btree (
 CREATE UNIQUE INDEX repository_builds_unique ON public.repository_builds USING btree (repo_id, build_id) WHERE (removed_at IS NULL);
 
 
---
--- Name: settings_k; Type: INDEX; Schema: public; Owner: -
---
-
-CREATE UNIQUE INDEX settings_k ON public.settings USING btree (k);
-
-
 --
 -- Name: source_commit_jobs_commit_id; Type: INDEX; Schema: public; Owner: -
 --