From 3da22b4e387e01a0f134dc551bce159a7cd1ace8 Mon Sep 17 00:00:00 2001 From: vdorge Date: Tue, 2 Sep 2025 13:00:15 +0200 Subject: [PATCH] commit --- BDD.sql | 4 +++- migrations/01_init.sql | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/BDD.sql b/BDD.sql index 6634e09..2b65a56 100644 --- a/BDD.sql +++ b/BDD.sql @@ -56,7 +56,9 @@ CREATE TABLE utilisateurs ( date_consentement_photo TIMESTAMPTZ, changement_mdp_obligatoire BOOLEAN DEFAULT false, cree_le TIMESTAMPTZ DEFAULT now(), - modifie_le TIMESTAMPTZ DEFAULT now() + modifie_le TIMESTAMPTZ DEFAULT now(), + ville VARCHAR(150), + code_postal VARCHAR(10) ); -- ========================================================== diff --git a/migrations/01_init.sql b/migrations/01_init.sql index 982b4c2..6b4d43b 100644 --- a/migrations/01_init.sql +++ b/migrations/01_init.sql @@ -56,7 +56,9 @@ CREATE TABLE utilisateurs ( date_consentement_photo TIMESTAMPTZ, changement_mdp_obligatoire BOOLEAN DEFAULT false, cree_le TIMESTAMPTZ DEFAULT now(), - modifie_le TIMESTAMPTZ DEFAULT now() + modifie_le TIMESTAMPTZ DEFAULT now(), + ville VARCHAR(150), + code_postal VARCHAR(10) ); -- ==========================================================