update of phpgw_categories.access plus phpgw_notes.access type to use varchar

This commit is contained in:
bettina
2001-06-03 20:45:34 +00:00
parent cf9686e512
commit 798ff60cb9
5 changed files with 91 additions and 28 deletions

View File

@ -283,7 +283,7 @@
cat_parent int DEFAULT 0,
cat_level int DEFAULT 0,
cat_owner int,
cat_access char(7),
cat_access varchar(7),
cat_appname varchar(50) NOT NULL,
cat_name varchar(150) NOT NULL,
cat_description varchar(255) NOT NULL,
@ -302,7 +302,7 @@
$sql = "CREATE TABLE phpgw_notes (
note_id serial,
note_owner int,
note_access char(7),
note_access varchar(7),
note_date int,
note_category int,
note_content text
@ -323,7 +323,7 @@
)";
$phpgw_setup->db->query($sql);
$phpgw_info['setup']['currentver']['phpgwapi'] = '0.9.13.001';
$phpgw_info['setup']['currentver']['phpgwapi'] = '0.9.13.002';
$phpgw_info['setup']['oldver']['phpgwapi'] = $phpgw_info['setup']['currentver']['phpgwapi'];
update_version_table();
?>