summaryrefslogtreecommitdiff
path: root/sql/legacy/Pg-upgrade-2.6.18-2.6.19.sql
diff options
context:
space:
mode:
authoreinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2006-11-17 18:02:49 +0000
committereinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2006-11-17 18:02:49 +0000
commitc30135d1b032dc7f6505f199e4d79df25518f55c (patch)
tree029a53c38e9844ac881d70cb556512a83d40a944 /sql/legacy/Pg-upgrade-2.6.18-2.6.19.sql
parentac68ad4e2a5a937b75acc92a6e20521360bc90ee (diff)
Moving upgrade script fixes into trunk
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@653 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'sql/legacy/Pg-upgrade-2.6.18-2.6.19.sql')
-rw-r--r--sql/legacy/Pg-upgrade-2.6.18-2.6.19.sql23
1 files changed, 9 insertions, 14 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 9594f9a0..29068169 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
@@ -12,8 +12,6 @@ ALTER TABLE customer ADD PRIMARY KEY (id);
ALTER TABLE customertax ADD PRIMARY KEY (customer_id, chart_id);
-ALTER TABLE defaults ADD PRIMARY KEY (version);
-
ALTER TABLE department ADD PRIMARY KEY (id);
ALTER TABLE dpt_trans ADD PRIMARY KEY (trans_id);
@@ -152,18 +150,8 @@ UPDATE tax SET taxmodule_id = 1;
ALTER TABLE tax ALTER COLUMN taxmodule_id SET NOT NULL;
-- Fixed session table and add users table --
-BEGIN;
-LOCK session in EXCLUSIVE MODE;
-ALTER TABLE session ADD CONSTRAINT session_token_check check (length(token::text) = 32);
-ALTER TABLE session ADD column user_id integer not null references users(id);
-
--- comment this out when user db is working:
-ALTER TABLE session ALTER COLUMN user_id DROP NOT NULL;
-
-LOCK users in EXCLUSIVE MODE;
CREATE TABLE users (id serial UNIQUE, username varchar(30) PRIMARY KEY);
COMMENT ON TABLE users 'username is the primary key because we don\'t want duplicate users';
-LOCK users_conf in EXCLUSIVE MODE;
CREATE TABLE users_conf(id integer primary key references users(id) deferrable initially deferred,
acs text,
address text,
@@ -188,24 +176,31 @@ 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';
COMMENT ON COLUMN users_conf.id IS 'Yes primary key with a FOREIGN KEY to users(id) is correct';
COMMENT ON COLUMN users_conf.password IS 'This means we have to get rid of the current password stuff and move to presumably md5()';
-COMMIT;
+
+LOCK session in EXCLUSIVE MODE;
+ALTER TABLE session ADD CONSTRAINT session_token_check check (length(token::text) = 32);
+ALTER TABLE session ADD column user_id integer not null references users(id);
+
+-- comment this out when user db is working:
+ALTER TABLE session ALTER COLUMN user_id DROP NOT NULL;
-- Admin user --
BEGIN;
INSERT INTO users(username) VALUES ('admin');
INSERT INTO users_conf(id,password) VALUES (currval('users_id_seq'),NULL);
-COMMIT;
-- Functions