mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 00:29:38 +01:00
Added the phpgw_accounts to the drop tables scripts and fixed ANOTHER typo
This commit is contained in:
parent
24c586773e
commit
c1f8c7d7df
@ -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");
|
||||
|
@ -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");
|
||||
|
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user