forked from extern/egroupware
Fixed upgrade script from way back when
This commit is contained in:
@ -31,18 +31,17 @@
|
||||
$phpgw_setup->db->query($sql);
|
||||
|
||||
|
||||
$sql = "create table accounts (
|
||||
$sql = "create table phpgw_accounts (
|
||||
account_id serial,
|
||||
account_lid varchar(25) NOT NULL,
|
||||
account_pwd char(32) NOT NULL,
|
||||
account_firstname varchar(50),
|
||||
account_lastname varchar(50),
|
||||
account_permissions text,
|
||||
account_groups varchar(30),
|
||||
account_lastlogin int,
|
||||
account_lastlogin int,
|
||||
account_lastloginfrom varchar(255),
|
||||
account_lastpwd_change int,
|
||||
account_status char(1),
|
||||
account_type char(1)
|
||||
unique(account_lid)
|
||||
)";
|
||||
$phpgw_setup->db->query($sql);
|
||||
|
Reference in New Issue
Block a user