signup function

This commit is contained in:
Mitchell Marino
2023-04-04 13:59:27 -05:00
parent 6c8d0e4bd4
commit cc66a25d5d
2 changed files with 7 additions and 9 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
CREATE TABLE users (
id SERIAL PRIMARY KEY,
username varchar(255) NOT NULL,
username varchar(255) UNIQUE NOT NULL,
password bytea
);