mirror of
https://github.com/renorris/openfsd
synced 2026-03-22 23:05:36 +08:00
15 lines
342 B
SQL
15 lines
342 B
SQL
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
|
|
);
|