summaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authoreinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2006-11-17 03:33:07 +0000
committereinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2006-11-17 03:33:07 +0000
commitf3efedae41126e16ddbd32d2bc7cffdb19f6ce5e (patch)
tree452aa68c931d8d8b82a108e4b18e17f5a7b0e9c1 /sql
parent459b8c504ca964effbbe56ab459dd5768c7d284f (diff)
Adding crypted_password field :-)
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/branches/1.2@648 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'sql')
-rw-r--r--sql/legacy/Pg-upgrade-2.6.18-2.6.19.sql2
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';