sub _recreate_table { my $table_name = shift; drop_table($table_name) if table_exists($table_name); create_table($table_name, %schema); }