Files
kickkingsadmin/schemas/users.md
T
2026-05-05 20:02:40 +00:00

10 lines
384 B
Markdown

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;