added access_field to the notes_table

This commit is contained in:
bettina
2001-04-25 00:45:50 +00:00
parent 4ca386d64c
commit 3265e4a2d8
5 changed files with 55 additions and 15 deletions

View File

@ -323,12 +323,13 @@
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE phpgw_notes (
note_id int(20) NOT NULL auto_increment,
note_owner int(11),
note_date int(11),
note_category int(9),
note_content text,
PRIMARY KEY (note_id)
note_id int(20) NOT NULL auto_increment,
note_owner int(11),
note_access char(7),
note_date int(11),
note_category int(9),
note_content text,
PRIMARY KEY (note_id)
)";
$phpgw_setup->db->query($sql);
@ -348,8 +349,8 @@
)";
$phpgw_setup->db->query($sql);
$phpgw_info['setup']['currentver']['phpgwapi'] = '0.9.10';
$phpgw_info['setup']['currentver']['phpgwapi'] = '0.9.11.001';
$phpgw_info['setup']['oldver']['phpgwapi'] = $phpgw_info['setup']['currentver']['phpgwapi'];
update_version_table();
// $phpgw_setup->update_version_table();
?>
?>