parent
f4d7b42e74
commit
27a58759c0
@ -0,0 +1,11 @@
|
|||||||
|
CREATE TABLE Users (
|
||||||
|
id_user SERIAL PRIMARY KEY,
|
||||||
|
username varchar(50) NOT NULL,
|
||||||
|
email varchar(50) NOT NULL,
|
||||||
|
phone varchar(10) NOT NULL, --Pas nécessaire
|
||||||
|
pssword varchar(99) NOT NULL,
|
||||||
|
creation date NOT NULL,
|
||||||
|
is_admin boolean NOT NULL, -- Créer une table pour l'administrateur
|
||||||
|
-- Manque une colonne pour l'image (table à part)
|
||||||
|
CONSTRAINT unique_col UNIQUE (username, email, phone)
|
||||||
|
);
|
Loading…
Reference in new issue