mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-10 00:37:54 +02:00
Add phpgw_nextid table and common->nextid function
This commit is contained in:
@ -291,7 +291,7 @@
|
||||
note_id serial,
|
||||
note_owner int,
|
||||
note_date int,
|
||||
note_category int,
|
||||
note_category int,
|
||||
note_content text
|
||||
)";
|
||||
$phpgw_setup->db->query($sql);
|
||||
@ -304,7 +304,13 @@
|
||||
)";
|
||||
$phpgw_setup->db->query($sql);
|
||||
|
||||
$phpgw_info['setup']['currentver']['phpgwapi'] = '0.9.10pre18';
|
||||
$sql = "create table phpgw_nextid (
|
||||
appname varchar(25),
|
||||
id int
|
||||
)";
|
||||
$phpgw_setup->db->query($sql);
|
||||
|
||||
$phpgw_info['setup']['currentver']['phpgwapi'] = '0.9.10pre19';
|
||||
$phpgw_info['setup']['oldver']['phpgwapi'] = $phpgw_info['setup']['currentver']['phpgwapi'];
|
||||
update_version_table();
|
||||
?>
|
||||
|
Reference in New Issue
Block a user