Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
Openfire
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Openfire
Commits
39511ec2
Commit
39511ec2
authored
Dec 12, 2016
by
Dave Cridland
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upgrade scripts
parent
f25447b3
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
22 additions
and
0 deletions
+22
-0
openfire_db2.sql
src/database/upgrade/24/openfire_db2.sql
+4
-0
openfire_hsqldb.sql
src/database/upgrade/24/openfire_hsqldb.sql
+3
-0
openfire_mysql.sql
src/database/upgrade/24/openfire_mysql.sql
+3
-0
openfire_oracle.sql
src/database/upgrade/24/openfire_oracle.sql
+3
-0
openfire_postgresql.sql
src/database/upgrade/24/openfire_postgresql.sql
+3
-0
openfire_sqlserver.sql
src/database/upgrade/24/openfire_sqlserver.sql
+3
-0
openfire_sybase.sql
src/database/upgrade/24/openfire_sybase.sql
+3
-0
No files found.
src/database/upgrade/24/openfire_db2.sql
0 → 100644
View file @
39511ec2
ALTER
TABLE
ofMucConversationLog
ADD
COLUMN
stanza
CLOB
;
ALTER
TABLE
ofMucConversationLog
ADD
COLUMN
messageID
INTEGER
;
UPDATE
ofVersion
SET
version
=
24
WHERE
name
=
'openfire'
;
src/database/upgrade/24/openfire_hsqldb.sql
0 → 100644
View file @
39511ec2
ALTER
TABLE
ofMucConversationLog
ADD
COLUMN
stanza
LONGVARCHAR
NULL
;
ALTER
TABLE
ofMucConversationLog
ADD
COLUMN
messageID
BIGINT
NULL
;
UPDATE
ofVersion
SET
version
=
24
WHERE
name
=
'openfire'
;
\ No newline at end of file
src/database/upgrade/24/openfire_mysql.sql
0 → 100644
View file @
39511ec2
ALTER
TABLE
ofMucConversationLog
ADD
COLUMN
stanza
TEXT
NULL
;
ALTER
TABLE
ofMucConversationLog
ADD
COLUMN
messageID
BIGINT
NULL
;
UPDATE
ofVersion
SET
version
=
24
WHERE
name
=
'openfire'
;
\ No newline at end of file
src/database/upgrade/24/openfire_oracle.sql
0 → 100644
View file @
39511ec2
ALTER
TABLE
ofMucConversationLog
ADD
COLUMN
stanza
VARCHAR2
(
4000
)
NULL
;
ALTER
TABLE
ofMucConversationLog
ADD
COLUMN
messageID
INT
NULL
;
UPDATE
ofVersion
SET
version
=
24
WHERE
name
=
'openfire'
;
\ No newline at end of file
src/database/upgrade/24/openfire_postgresql.sql
0 → 100644
View file @
39511ec2
ALTER
TABLE
ofMucConversationLog
ADD
COLUMN
stanza
TEXT
NULL
;
ALTER
TABLE
ofMucConversationLog
ADD
COLUMN
messageID
INTEGER
NULL
;
UPDATE
ofVersion
SET
version
=
24
WHERE
name
=
'openfire'
;
\ No newline at end of file
src/database/upgrade/24/openfire_sqlserver.sql
0 → 100644
View file @
39511ec2
ALTER
TABLE
ofMucConversationLog
ADD
COLUMN
stanza
NTEXT
NULL
;
ALTER
TABLE
ofMucConversationLog
ADD
COLUMN
messageID
INT
NULL
;
UPDATE
ofVersion
SET
version
=
24
WHERE
name
=
'openfire'
;
\ No newline at end of file
src/database/upgrade/24/openfire_sybase.sql
0 → 100644
View file @
39511ec2
ALTER
TABLE
ofMucConversationLog
ADD
COLUMN
stanza
TEXT
NULL
;
ALTER
TABLE
ofMucConversationLog
ADD
COLUMN
messageID
INT
NULL
;
UPDATE
ofVersion
SET
version
=
24
WHERE
name
=
'openfire'
;
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment