Skip to content

Commit 2e1e164

Browse files
committed
code style improvement
1 parent b4f66c0 commit 2e1e164

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

lib/planetscale_rails/migration.rb

+1-3
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,8 @@ module Current
1010
def create_table(table_name, **options)
1111
if ENV["ENABLE_PSDB"] && options[:keyspace].present?
1212
table_name = "#{options[:keyspace]}.#{table_name}"
13-
super(table_name, **options.except(:keyspace))
14-
else
15-
super(table_name, **options.except(:keyspace))
1613
end
14+
super(table_name, **options.except(:keyspace))
1715
end
1816
end
1917
end

0 commit comments

Comments
 (0)