You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
468 B
12 lines
468 B
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)
|
|
);
|