require 'active_record' require 'hotch' ActiveRecord::Base.establish_connection('postgresql://localhost/rom') class User < ActiveRecord::Base end User.delete_all Hotch() do User.create(name: 'Jane Doe', email: 'jane@doe.org', age: 21) end