Commit ff51af89 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Initial version.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@3707 b35dd754-fafc-0310-a699-88a17e54d16e
parent 5247e254
-- $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 NULL;
ALTER TABLE jiveUser ADD COLUMN encryptedPassword VARCHAR(255);
/* $Revision: $ */
/* $Date: $ */
/* Update the jiveVersion table to new definition. */
DROP TABLE jiveVersion;
CREATE TABLE jiveVersion (
name NVARCHAR(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 NULL;
ALTER TABLE jiveUser ADD encryptedPassword NVARCHAR(255);
/* $Revision: $ */
/* $Date: $ */
/* Update the jiveVersion table to new definition. */
DROP TABLE jiveVersion;
CREATE TABLE jiveVersion (
name NVARCHAR(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 MODIFY password NULL;
ALTER TABLE jiveUser ADD encryptedPassword NVARCHAR(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