From 407cec07fc030d08bbd4bf5d5bbca23dd1d788e6 Mon Sep 17 00:00:00 2001 From: Stan Pinte Date: Sat, 26 Feb 2005 17:21:27 +0000 Subject: [PATCH] added comment --- html/admin/sql/account_repository/schema.sql | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/html/admin/sql/account_repository/schema.sql b/html/admin/sql/account_repository/schema.sql index 05224fadb..2042490de 100644 --- a/html/admin/sql/account_repository/schema.sql +++ b/html/admin/sql/account_repository/schema.sql @@ -16,12 +16,16 @@ CREATE TABLE ac_users ( use_usertype text NOT NULL, CHECK (((use_active = 0) OR (use_active = 1))) ); + CREATE TABLE ac_dossier ( dos_id integer DEFAULT nextval('dossier_id'::text) NOT NULL, dos_name text NOT NULL, dos_description text, dos_jnt_user integer DEFAULT 0 ); + +COMMENT ON COLUMN ac_dossier.dos_jnt_user IS 'The user owning the file.'; + CREATE SEQUENCE seq_jnt_use_dos START 1 INCREMENT 1