Fixed upgrade script from way back when

This commit is contained in:
jengo
2001-02-05 15:46:35 +00:00
parent f6adca46c7
commit e69c82326b
2 changed files with 32 additions and 5 deletions

View File

@ -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);