Skip to content

Commit f0a788f

Browse files
committed
Merge pull request #137 from fbonzon/patch-1
Fix typo in table name "balacing"
2 parents 5ee8aad + b103ca9 commit f0a788f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

phpfastcache/3.0.0/drivers/sqlite.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ function initIndexing(PDO $db) {
4343
$db->exec('drop table if exists "balancing"');
4444
$db->exec('CREATE TABLE "balancing" ("keyword" VARCHAR PRIMARY KEY NOT NULL UNIQUE, "db" INTEGER)');
4545
$db->exec('CREATE INDEX "db" ON "balancing" ("db")');
46-
$db->exec('CREATE UNIQUE INDEX "lookup" ON "balacing" ("keyword")');
46+
$db->exec('CREATE UNIQUE INDEX "lookup" ON "balancing" ("keyword")');
4747

4848
}
4949

0 commit comments

Comments
 (0)