- Changed aid from tinyint to int.
parent
3981e571f9
commit
c9f8c6697b
|
@ -20,7 +20,7 @@ CREATE TABLE access (
|
|||
--
|
||||
|
||||
CREATE TABLE accesslog (
|
||||
aid tinyint(10) NOT NULL auto_increment,
|
||||
aid int(10) NOT NULL auto_increment,
|
||||
title varchar(255) default NULL,
|
||||
path varchar(255) default NULL,
|
||||
url varchar(255) default NULL,
|
||||
|
|
|
@ -1998,7 +1998,7 @@ function update_113() {
|
|||
if ($GLOBALS['db_type'] == 'mysql') {
|
||||
$ret[] = update_sql('DROP TABLE {accesslog}');
|
||||
$ret[] = update_sql("CREATE TABLE {accesslog} (
|
||||
aid tinyint(10) NOT NULL auto_increment,
|
||||
aid int(10) NOT NULL auto_increment,
|
||||
title varchar(255) default NULL,
|
||||
path varchar(255) default NULL,
|
||||
url varchar(255) default NULL,
|
||||
|
|
Loading…
Reference in New Issue