[Obm] Fix: new install - version 0.7.1

Pierre Baudracco pierre.baudracco@aliacom.fr
Wed, 01 Oct 2003 20:01:06 +0200


Before executing the install script, add these lines to the file
script/0.7/create_obmdb_0.7.mysql.sql

then run the install.

-------------------------------------------------------------------------------
-- Todo
-------------------------------------------------------------------------------
-- Create new table
CREATE TABLE Todo (
   todo_id int(8) DEFAULT '0' NOT NULL auto_increment,
   todo_timeupdate timestamp(14),
   todo_timecreate timestamp(14),
   todo_userupdate int(8),
   todo_usercreate int(8),
   todo_user int(8),
   todo_date timestamp(14) default NULL,
   todo_deadline timestamp(14) default NULL,
   todo_priority int(8) default NULL,
   todo_title Varchar(80) default NULL,
   todo_content text default NULL,
   PRIMARY KEY (todo_id)
);

-- Day the week start
insert into 
UserObmPref(userobmpref_user_id,userobmpref_option,userobmpref_value) values 
('0','todo_order','todo_priority');

-- Todo top list
insert into 
UserObmPref(userobmpref_user_id,userobmpref_option,userobmpref_value) values 
('0','todo_1_id','0');
insert into 
UserObmPref(userobmpref_user_id,userobmpref_option,userobmpref_value) values 
('0','todo_2_id','0');
insert into 
UserObmPref(userobmpref_user_id,userobmpref_option,userobmpref_value) values 
('0','todo_3_id','0');
insert into 
UserObmPref(userobmpref_user_id,userobmpref_option,userobmpref_value) values 
('0','todo_4_id','0');
insert into 
UserObmPref(userobmpref_user_id,userobmpref_option,userobmpref_value) values 
('0','todo_5_id','0');


-- module 'todo'

INSERT INTO DisplayPref 
(display_user_id,display_entity,display_fieldname,display_fieldorder,display_display) 
VALUES (0,'todo', 'todo_title', 1, 2);
INSERT INTO DisplayPref 
(display_user_id,display_entity,display_fieldname,display_fieldorder,display_display) 
VALUES (0,'todo', 'todo_priority', 2, 1);
INSERT INTO DisplayPref 
(display_user_id,display_entity,display_fieldname,display_fieldorder,display_display) 
VALUES (0,'todo', 'date_todo', 3, 1);
INSERT INTO DisplayPref 
(display_user_id,display_entity,display_fieldname,display_fieldorder,display_display) 
VALUES (0,'todo', 'date_deadline', 4, 1);
INSERT INTO DisplayPref 
(display_user_id,display_entity,display_fieldname,display_fieldorder,display_display) 
VALUES (0,'todo', 'todo_id', 5, 2);


-- 
------------------------------------------------------------------------------
Pierre Baudracco - pierre.baudracco@aliacom.fr
ALIACOM - www.aliacom.fr - Toulouse : 05 62 19 24 91 - Paris : 01 48 25 53 13