Skip to content

Instantly share code, notes, and snippets.

@kikeda1104
Last active July 13, 2018 06:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kikeda1104/a5a7788be5d1a6f0ad86e7f5ad292446 to your computer and use it in GitHub Desktop.
Save kikeda1104/a5a7788be5d1a6f0ad86e7f5ad292446 to your computer and use it in GitHub Desktop.
def call
@conn.exec(ERB.new(erb_template).result(binding))
end
private
def erb_template
<<-SQL
<% TABLES.each do |table| %>
create table <%= table %>_copy (like <%= table %>);
<% end %>
SQL
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment