mirror of
https://github.com/renorris/openfsd
synced 2026-03-22 14:35:36 +08:00
11 lines
259 B
SQL
11 lines
259 B
SQL
create table users
|
|
(
|
|
cid integer not null
|
|
constraint users_pk
|
|
primary key autoincrement,
|
|
password text(60) not null,
|
|
first_name text(255),
|
|
last_name text(255),
|
|
network_rating integer not null
|
|
);
|