- Changed aid from tinyint to int.

4.6.x
Dries Buytaert 2004-11-28 13:35:11 +00:00
parent 3981e571f9
commit c9f8c6697b
2 changed files with 2 additions and 2 deletions

View File

@ -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,

View File

@ -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,