Browse Source

missing column

rajah 5 months ago
parent
commit
cd495486e7
1 changed files with 1 additions and 0 deletions
  1. 1 0
      postgresql/tables/roles.sql

+ 1 - 0
postgresql/tables/roles.sql

@@ -3,6 +3,7 @@ CREATE TABLE IF NOT EXISTS vote.roles
     date_creation timestamp without time zone NOT NULL DEFAULT now(),
     date_modification timestamp without time zone,
     numero_role integer NOT NULL PRIMARY KEY GENERATED ALWAYS AS IDENTITY,
+    flag_actif boolean DEFAULT true,
     libelle character varying(64) COLLATE pg_catalog."default" NOT NULL
 )
 TABLESPACE vote;