This commit is contained in:
React User
2026-05-05 20:01:28 +00:00
parent a09b33e158
commit 04b3463b19
24 changed files with 594 additions and 37 deletions
+5
View File
@@ -0,0 +1,5 @@
create table public.settings (
key character varying not null,
value character varying not null,
constraint settings_pkey primary key (key)
) TABLESPACE pg_default;