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

Minor fix.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@3779 b35dd754-fafc-0310-a699-88a17e54d16e
parent ae59b36b
# $Revision: $
# $Date: $
// $Revision: $
// $Date: $
# Update the jiveVersion table to new definition.
// Update the jiveVersion table to new definition.
DROP TABLE jiveVersion;
CREATE TABLE jiveVersion (
name varchar(50) NOT NULL,
......@@ -10,6 +10,6 @@ CREATE TABLE jiveVersion (
);
INSERT INTO jiveVersion (name, version) VALUES ('wildfire', 6);
# Make password column accept null, add encrypted password column.
// Make password column accept null, add encrypted password column.
ALTER TABLE jiveUser ALTER COLUMN password VARCHAR(32);
ALTER TABLE jiveUser ADD COLUMN encryptedPassword VARCHAR(255) BEFORE name;
\ 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