diff options
-rw-r--r-- | sql/legacy/Pg-upgrade-2.6.18-2.6.19.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/legacy/Pg-upgrade-2.6.18-2.6.19.sql b/sql/legacy/Pg-upgrade-2.6.18-2.6.19.sql index a5628186..51543c76 100644 --- a/sql/legacy/Pg-upgrade-2.6.18-2.6.19.sql +++ b/sql/legacy/Pg-upgrade-2.6.18-2.6.19.sql @@ -178,12 +178,14 @@ CREATE TABLE users_conf(id integer primary key references users(id) deferrable i password varchar(32) check(length(password) = 32), print text, printer text, + crypted_password text; role text, sid text, signature text, stylesheet text, tel text, templates text, + crypted_password text, timeout numeric, vclimit numeric); COMMENT ON TABLE users_conf IS 'This is a completely dumb table that is a place holder to get usersconf into the database. Next major release will have a much more sane implementation'; |