[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SF.net SVN: ledger-smb: [647] branches/1.2/sql/legacy
- Subject: SF.net SVN: ledger-smb: [647] branches/1.2/sql/legacy
- From: ..hidden..
- Date: Thu, 16 Nov 2006 19:25:40 -0800
Revision: 647
http://svn.sourceforge.net/ledger-smb/?rev=647&view=rev
Author: einhverfr
Date: 2006-11-16 19:25:39 -0800 (Thu, 16 Nov 2006)
Log Message:
-----------
Fixing braindead issues in upgrade script
Modified Paths:
--------------
branches/1.2/sql/legacy/Pg-upgrade-2.6.17-2.6.18.sql
branches/1.2/sql/legacy/Pg-upgrade-2.6.18-2.6.19.sql
Modified: branches/1.2/sql/legacy/Pg-upgrade-2.6.17-2.6.18.sql
===================================================================
--- branches/1.2/sql/legacy/Pg-upgrade-2.6.17-2.6.18.sql 2006-11-17 02:39:01 UTC (rev 646)
+++ branches/1.2/sql/legacy/Pg-upgrade-2.6.17-2.6.18.sql 2006-11-17 03:25:39 UTC (rev 647)
@@ -1,3 +1,4 @@
+BEGIN;
ALTER TABLE chart ADD PRIMARY KEY (id);
-- linuxpoet:
-- adding primary key to acc_trans
@@ -285,3 +286,4 @@
-- end function
UPDATE defaults SET version = '2.6.18';
+COMMIT;
Modified: branches/1.2/sql/legacy/Pg-upgrade-2.6.18-2.6.19.sql
===================================================================
--- branches/1.2/sql/legacy/Pg-upgrade-2.6.18-2.6.19.sql 2006-11-17 02:39:01 UTC (rev 646)
+++ branches/1.2/sql/legacy/Pg-upgrade-2.6.18-2.6.19.sql 2006-11-17 03:25:39 UTC (rev 647)
@@ -152,18 +152,8 @@
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,
@@ -199,13 +189,18 @@
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
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.