Added the phpgw_accounts to the drop tables scripts and fixed ANOTHER typo

This commit is contained in:
jengo 2001-02-05 16:43:46 +00:00
parent 24c586773e
commit c1f8c7d7df
3 changed files with 4 additions and 3 deletions

View File

@ -13,7 +13,7 @@
$phpgw_setup->db->query("DROP TABLE config");
$phpgw_setup->db->query("DROP TABLE applications");
$phpgw_setup->db->query("DROP TABLE accounts");
$phpgw_setup->db->query("DROP TABLE phpgw_accounts");
$phpgw_setup->db->query("DROP TABLE groups");
$phpgw_setup->db->query("DROP TABLE preferences");
$phpgw_setup->db->query("DROP TABLE phpgw_sessions");

View File

@ -13,8 +13,8 @@
$phpgw_setup->db->query("DROP TABLE config");
$phpgw_setup->db->query("DROP TABLE applications");
$phpgw_setup->db->query("drop sequence accounts_account_id_seq");
$phpgw_setup->db->query("DROP TABLE accounts");
$phpgw_setup->db->query("drop sequence phpgw_accounts_account_id_seq");
$phpgw_setup->db->query("DROP TABLE phpgw_accounts");
$phpgw_setup->db->query("drop sequence groups_group_id_seq");
$phpgw_setup->db->query("DROP TABLE groups");
$phpgw_setup->db->query("DROP TABLE preferences");

View File

@ -921,6 +921,7 @@
$phpgw_setup->db->query("insert into phpgw_accounts select * from phpgw_temp",__LINE__,__FILE__);
$phpgw_setup->db->query("drop table phpgw_temp",__LINE__,__FILE__);
$phpgw_setup->db->query("drop sequence acccount_account_id_seq");
$phpgw_setup->db->query("alter table accounts rename phpgw_accounts",__LINE__,__FILE__);
$phpgw_info["setup"]["currentver"]["phpgwapi"] = "0.9.10pre4";