blob: a18bf5ea0a37a7c2aa488c9a0980ff0ef41a735e (
plain) (
tree)
|
|
# frozen_string_literal: true
module DdlHelper
def with_example_table(connection, table_name, definition = nil)
connection.execute("CREATE TABLE #{table_name}(#{definition})")
yield
ensure
connection.execute("DROP TABLE #{table_name}")
end
end
|