浏览代码

missing column

rajah 5 月之前
父节点
当前提交
cd495486e7
共有 1 个文件被更改,包括 1 次插入0 次删除
  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;