new signup data

This commit is contained in:
CHIEFSOFT\ameye
2026-04-04 21:27:53 -04:00
parent 2bfb802b10
commit 5f4a9112c3
4 changed files with 77 additions and 5 deletions
+13 -3
View File
@@ -1372,7 +1372,17 @@ grant all privileges on database merms_panel to merms_panel;
CREATE TABLE signup (
id SERIAL,
uid uuid DEFAULT uuid_generate_v4(),
email VARCHAR(100) NOT NULL,
firstname VARCHAR(25) NOT NULL,
lastname VARCHAR(25) NOT NULL,
loc INET,
status INT DEFAULT 0,
added timestamp without time zone DEFAULT now(),
updated timestamp without time zone DEFAULT now()
);
ALTER TABLE ONLY signup
ADD CONSTRAINT signup_id_key UNIQUE (id);