Table ODE_JOB isn't created automatically if doesn't exist.
-----------------------------------------------------------
Key: ODE-320
URL: https://issues.apache.org/jira/browse/ODE-320
Project: ODE
Issue Type: Bug
Affects Versions: 1.1.1
Environment: Apache ODE 1.1.1
ServiceMix 3.2.1
MySQL 5
Windows XP SP2
Sun Java 5
Reporter: Oleg Atamanenko
The table ODE_JOB isn't created in database during first deployment..
CREATE TABLE ODE_JOB(jobid CHAR(64) DEFAULT '' NOT NULL,
ts BIGINT DEFAULT 0 NOT NULL ,
nodeid char(64) NULL,
scheduled int DEFAULT 0 NOT NULL,
transacted int DEFAULT 0 NOT NULL,
details LONG VARBINARY NULL,
PRIMARY KEY(jobid));
CREATE INDEX IDX_ODE_JOB_TS ON ODE_JOB (ts);
CREATE INDEX IDX_ODE_JOB_NODEID ON ODE_JOB (nodeid);
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.