This commit is contained in:
React User
2026-04-04 18:43:36 +00:00
parent 4bbba45642
commit 37934c3d84
186 changed files with 2546 additions and 61 deletions
+10
View File
@@ -0,0 +1,10 @@
create table public.users (
id bigint generated by default as identity not null,
created_at timestamp with time zone not null default now(),
username text null,
password text null,
cc real null default '0'::real,
rc real null default '0'::real,
last_logged_at timestamp with time zone null default now(),
constraint users_pkey primary key (id)
) TABLESPACE pg_default;