mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-09 00:14:57 +02:00
added access_field to the notes_table
This commit is contained in:
@ -294,11 +294,12 @@
|
||||
$phpgw_setup->db->query($sql);
|
||||
|
||||
$sql = "CREATE TABLE phpgw_notes (
|
||||
note_id serial,
|
||||
note_owner int,
|
||||
note_date int,
|
||||
note_category int,
|
||||
note_content text
|
||||
note_id serial,
|
||||
note_owner int,
|
||||
note_access char(7),
|
||||
note_date int,
|
||||
note_category int,
|
||||
note_content text
|
||||
)";
|
||||
$phpgw_setup->db->query($sql);
|
||||
|
||||
@ -316,7 +317,7 @@
|
||||
)";
|
||||
$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();
|
||||
?>
|
||||
|
Reference in New Issue
Block a user