增加常量文件,修改作者注释

This commit is contained in:
2026-06-16 17:31:36 +08:00
parent 9309b2115f
commit 746af0ea6a
31 changed files with 967 additions and 6 deletions

View File

@@ -0,0 +1,14 @@
create sequence public.users_cid_seq
as integer;
create table public.users
(
cid serial
constraint users_pk
default nextval('users_cid_seq')
primary key,
password char(60) not null,
first_name varchar(255),
last_name varchar(255),
network_rating smallint not null
);