From f6630b7a33e0f6cb34d8786a6ed56a5db4adbbbf Mon Sep 17 00:00:00 2001 From: bettina Date: Thu, 22 Feb 2001 17:02:28 +0000 Subject: [PATCH] renamed table notes -> phpgw_notes --- setup/sql/mysql_newtables.inc.php | 2 +- setup/sql/pgsql_newtables.inc.php | 2 +- setup/sql/pgsql_upgrade_beta.inc.php | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/setup/sql/mysql_newtables.inc.php b/setup/sql/mysql_newtables.inc.php index d90b42a99d..efac2420b7 100644 --- a/setup/sql/mysql_newtables.inc.php +++ b/setup/sql/mysql_newtables.inc.php @@ -292,7 +292,7 @@ );"; $phpgw_setup->db->query($sql); - $phpgw_info['setup']['currentver']['phpgwapi'] = '0.9.10pre11'; + $phpgw_info['setup']['currentver']['phpgwapi'] = '0.9.10pre12'; $phpgw_info['setup']['oldver']['phpgwapi'] = $phpgw_info['setup']['currentver']['phpgwapi']; update_version_table(); // $phpgw_setup->update_version_table(); diff --git a/setup/sql/pgsql_newtables.inc.php b/setup/sql/pgsql_newtables.inc.php index bf271bf230..d2aedf4cf7 100644 --- a/setup/sql/pgsql_newtables.inc.php +++ b/setup/sql/pgsql_newtables.inc.php @@ -265,7 +265,7 @@ );"; $phpgw_setup->db->query($sql); - $phpgw_info['setup']['currentver']['phpgwapi'] = '0.9.10pre10'; + $phpgw_info['setup']['currentver']['phpgwapi'] = '0.9.10pre12'; $phpgw_info['setup']['oldver']['phpgwapi'] = $phpgw_info['setup']['currentver']['phpgwapi']; update_version_table(); ?> \ No newline at end of file diff --git a/setup/sql/pgsql_upgrade_beta.inc.php b/setup/sql/pgsql_upgrade_beta.inc.php index a2ce2a2a55..5b3cf8bd4c 100644 --- a/setup/sql/pgsql_upgrade_beta.inc.php +++ b/setup/sql/pgsql_upgrade_beta.inc.php @@ -1088,14 +1088,14 @@ $phpgw_info['setup']['currentver']['phpgwapi'] = '0.9.10pre11'; } - $test[] = '0.9.10pre10'; - function upgrade0_9_10pre10() + $test[] = '0.9.10pre11'; + function upgrade0_9_10pre11() { global $phpgw_info, $phpgw_setup; $phpgw_setup->db->query("create table phpgw_temp as select * from notes",__LINE__,__FILE__); - $phpgw_setup->db->query("drop sequence notes_note_id_seq"); + $phpgw_setup->db->query("drop sequence notes_note_id_seq",__LINE__,__FILE__); $phpgw_setup->db->query("drop table notes",__LINE__,__FILE__);