Skip to content

Commit

Permalink
code style improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
mscoutermarsh committed Apr 1, 2024
1 parent b4f66c0 commit 2e1e164
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lib/planetscale_rails/migration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,8 @@ module Current
def create_table(table_name, **options)
if ENV["ENABLE_PSDB"] && options[:keyspace].present?
table_name = "#{options[:keyspace]}.#{table_name}"
super(table_name, **options.except(:keyspace))
else
super(table_name, **options.except(:keyspace))
end
super(table_name, **options.except(:keyspace))
end
end
end
Expand Down

0 comments on commit 2e1e164

Please sign in to comment.