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 (
|
CREATE TABLE todo (
|
||||||
con number NOT NULL,
|
todo_id number NOT NULL,
|
||||||
owner varchar2(25),
|
todo_owner varchar2(25),
|
||||||
todo_access varchar2(10),
|
todo_access varchar2(10),
|
||||||
des varchar2(4000),
|
todo_des varchar2(4000),
|
||||||
pri number(11),
|
todo_pri number(11),
|
||||||
status number(11),
|
todo_status number(11),
|
||||||
datecreated number(11),
|
todo_datecreated number(11),
|
||||||
datedue number(11),
|
todo_datedue number(11),
|
||||||
PRIMARY KEY (con)
|
PRIMARY KEY (todo_id)
|
||||||
);
|
);
|
||||||
|
|
||||||
create sequence todo_seq
|
create sequence todo_seq
|
||||||
|
@ -116,14 +116,14 @@ create table addressbook (
|
|||||||
);
|
);
|
||||||
|
|
||||||
create table todo (
|
create table todo (
|
||||||
con serial,
|
todo_id serial,
|
||||||
owner varchar(25),
|
todo_owner varchar(25),
|
||||||
access varchar(10),
|
todo_access varchar(10),
|
||||||
des text,
|
todo_des text,
|
||||||
pri int,
|
todo_pri int,
|
||||||
status int,
|
todo_status int,
|
||||||
datecreated int,
|
todo_datecreated int,
|
||||||
datedue int
|
todo_datedue int
|
||||||
);
|
);
|
||||||
|
|
||||||
CREATE TABLE webcal_entry (
|
CREATE TABLE webcal_entry (
|
||||||
|
Loading…
Reference in New Issue
Block a user