#127539 by bjaspan: fix comma syntax error in update.php and system.install
parent
a7845659e8
commit
85cae8161f
|
@ -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)");
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue