#127539 by bjaspan: fix comma syntax error in update.php and system.install

6.x
Gábor Hojtsy 2007-05-09 11:39:23 +00:00
parent a7845659e8
commit 85cae8161f
2 changed files with 2 additions and 2 deletions

View File

@ -680,7 +680,7 @@ function system_install() {
sid varchar(64) NOT NULL default '',
timestamp int NOT NULL default '0',
batch text,
PRIMARY KEY (bid),
PRIMARY KEY (bid)
)");
db_query("CREATE INDEX {batch}_sid_idx ON {batch} (sid)");

View File

@ -698,7 +698,7 @@ function update_create_batch_table() {
sid varchar(64) NOT NULL default '',
timestamp int NOT NULL default '0',
batch text,
PRIMARY KEY (bid),
PRIMARY KEY (bid)
)");
$ret[] = update_sql("CREATE INDEX {batch}_sid_idx ON {batch} (sid)");
break;