appname is used with UNIQUE but is not defined as NOT NULL

This commit is contained in:
skeeter 2001-03-23 03:31:04 +00:00
parent 7cb11253d5
commit 489ae046af

View File

@ -1327,9 +1327,9 @@
global $phpgw_info, $phpgw_setup;
$sql = "create table phpgw_nextid (
appname varchar(25),
appname varchar(25) NOT NULL,
id int(8),
UNIQUE (appname)
UNIQUE (appname)
)";
$phpgw_setup->db->query($sql);