new signup data
This commit is contained in:
+13
-3
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user