Commit 4a7e9b4b authored by Sebastian Wissen's avatar Sebastian Wissen

adjust ddl statements for oracle

since two long columns are not permitted in one table by oracle and the
datatype long is deprecated, the respective columns are changed to clob
parent 010973b0
......@@ -35,8 +35,8 @@ CREATE TABLE ofMessageArchive (
toJID VARCHAR2(1024) NOT NULL,
toJIDResource VARCHAR2(255) NULL,
sentDate INTEGER NOT NULL,
stanza LONG NULL,
body LONG
stanza CLOB NULL,
body CLOB
);
CREATE INDEX ofMessageArchive_con_idx ON ofMessageArchive (conversationID);
......
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