Skip to content

Instantly share code, notes, and snippets.

@kikeda1104
Created July 13, 2018 06:46
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/ba37bf1c2bde53d6ccd48ecffac8b4fc to your computer and use it in GitHub Desktop.
Save kikeda1104/ba37bf1c2bde53d6ccd48ecffac8b4fc to your computer and use it in GitHub Desktop.
def call
@conn.exec(ERB.new(erb_template).result(binding))
end
private
def post_initialize(args)
@conn = Database::Adapter.conn(args)
end
def erb_template
<<-SQL
<% TABLES.each do |table| %>
drop table <%= table %>_copy;
<% end %>
SQL
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment