mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 00:29:38 +01:00
Updated the todo tables for oracle support
This commit is contained in:
parent
594074cb65
commit
fcee44d929
@ -252,15 +252,15 @@ end;
|
||||
----------
|
||||
|
||||
CREATE TABLE todo (
|
||||
con number NOT NULL,
|
||||
owner varchar2(25),
|
||||
todo_id number NOT NULL,
|
||||
todo_owner varchar2(25),
|
||||
todo_access varchar2(10),
|
||||
des varchar2(4000),
|
||||
pri number(11),
|
||||
status number(11),
|
||||
datecreated number(11),
|
||||
datedue number(11),
|
||||
PRIMARY KEY (con)
|
||||
todo_des varchar2(4000),
|
||||
todo_pri number(11),
|
||||
todo_status number(11),
|
||||
todo_datecreated number(11),
|
||||
todo_datedue number(11),
|
||||
PRIMARY KEY (todo_id)
|
||||
);
|
||||
|
||||
create sequence todo_seq
|
||||
|
@ -116,14 +116,14 @@ create table addressbook (
|
||||
);
|
||||
|
||||
create table todo (
|
||||
con serial,
|
||||
owner varchar(25),
|
||||
access varchar(10),
|
||||
des text,
|
||||
pri int,
|
||||
status int,
|
||||
datecreated int,
|
||||
datedue int
|
||||
todo_id serial,
|
||||
todo_owner varchar(25),
|
||||
todo_access varchar(10),
|
||||
todo_des text,
|
||||
todo_pri int,
|
||||
todo_status int,
|
||||
todo_datecreated int,
|
||||
todo_datedue int
|
||||
);
|
||||
|
||||
CREATE TABLE webcal_entry (
|
||||
|
Loading…
Reference in New Issue
Block a user