mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-27 08:19:45 +01:00
appname is used with UNIQUE but is not defined as NOT NULL
This commit is contained in:
parent
7cb11253d5
commit
489ae046af
@ -1327,9 +1327,9 @@
|
|||||||
global $phpgw_info, $phpgw_setup;
|
global $phpgw_info, $phpgw_setup;
|
||||||
|
|
||||||
$sql = "create table phpgw_nextid (
|
$sql = "create table phpgw_nextid (
|
||||||
appname varchar(25),
|
appname varchar(25) NOT NULL,
|
||||||
id int(8),
|
id int(8),
|
||||||
UNIQUE (appname)
|
UNIQUE (appname)
|
||||||
)";
|
)";
|
||||||
|
|
||||||
$phpgw_setup->db->query($sql);
|
$phpgw_setup->db->query($sql);
|
||||||
|
Loading…
Reference in New Issue
Block a user