Commit 692d9aaf authored by Matt Tucker's avatar Matt Tucker Committed by matt

Added two new scripts. Both need to be tested.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@3597 b35dd754-fafc-0310-a699-88a17e54d16e
parent 66d15549
-- $Revision: $
-- $Date: $
-- Update the jiveVersion table to new definition.
DROP TABLE jiveVersion;
CREATE TABLE jiveVersion (
name varchar(50) NOT NULL,
version INTEGER NOT NULL,
CONSTRAINT jiveVersion_pk PRIMARY KEY (name)
);
INSERT INTO jiveVersion (name, version) VALUES ("wildfire", 6);
-- Make password column accept null, add encrypted password column.
ALTER TABLE jiveUser ALTER COLUMN password SET DATA TYPE VARCHAR(32);
ALTER TABLE jiveUser ADD COLUMN encryptedPassword VARCHAR(255);
\ No newline at end of file
REM // $Revision: 795 $
REM // $Date: 2005-01-06 07:44:42 -0300 (Thu, 06 Jan 2005) $
REM // Update the jiveVersion table to new definition.
DROP TABLE jiveVersion;
CREATE TABLE jiveVersion (
name VARCHAR2(50) NOT NULL,
version INTEGER NOT NULL,
CONSTRAINT jiveVersion_pk PRIMARY KEY (name)
);
INSERT INTO jiveVersion (name, version) VALUES ("wildfire", 6);
REM // Make password column accept null, add encrypted password column.
ALTER TABLE jiveUser MODIFY password VARCHAR2(32) NULL;
ALTER TABLE jiveUser ADD COLUMN encryptedPassword VARCHAR(255);
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment