mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-09 16:35:02 +02:00
Add phpgw_nextid table and common->nextid function
This commit is contained in:
@ -321,7 +321,7 @@
|
||||
note_id int(20) NOT NULL auto_increment,
|
||||
note_owner int(11),
|
||||
note_date int(11),
|
||||
note_category int(9),
|
||||
note_category int(9),
|
||||
note_content text,
|
||||
PRIMARY KEY (note_id)
|
||||
)";
|
||||
@ -336,7 +336,14 @@
|
||||
);";
|
||||
$phpgw_setup->db->query($sql);
|
||||
|
||||
$phpgw_info['setup']['currentver']['phpgwapi'] = '0.9.10pre18';
|
||||
$sql = "create table phpgw_nextid (
|
||||
appname varchar(25),
|
||||
id int(8),
|
||||
UNIQUE (appname)
|
||||
)";
|
||||
$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();
|
||||
// $phpgw_setup->update_version_table();
|
||||
|
Reference in New Issue
Block a user