Skip to content

Commit

Permalink
fix(migrations) uppercase keyspace causing failure
Browse files Browse the repository at this point in the history
Fix Kong#249


Former-commit-id: 1a908b7a82b559a1da1352473293cd64cd11d4e4
  • Loading branch information
thibaultcha committed May 28, 2015
1 parent 740aa21 commit ec9b622
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ local Migration = {
CREATE KEYSPACE IF NOT EXISTS "]]..options.keyspace..[["
WITH REPLICATION = {'class' : 'SimpleStrategy', 'replication_factor' : 1};
USE ]]..options.keyspace..[[;
USE "]]..options.keyspace..[[";
CREATE TABLE IF NOT EXISTS schema_migrations(
id text PRIMARY KEY,
Expand Down

0 comments on commit ec9b622

Please sign in to comment.