initial v1.0-beta commit

This commit is contained in:
Reese Norris
2025-05-12 17:21:16 -07:00
commit cde3128509
68 changed files with 12495 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
drop sequence public.users_cid_seq;
drop table public.users;

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
);