Sha256: 243ed7637b9a879afb46addd6524ebb5e0ce29179134367e44f0263b770e5d19
Contents?: true
Size: 453 Bytes
Versions: 4
Compression:
Stored size: 453 Bytes
Contents
require_relative "../test_helper" ActiveRecord::Base.establish_connection adapter: "postgresql", database: "ahoy_test" ActiveRecord::Migration.enable_extension "hstore" ActiveRecord::Migration.create_table :postgresql_hstore_events, force: true do |t| t.hstore :properties end class PostgresqlHstoreEvent < PostgresqlBase end class PostgresqlHstoreTest < Minitest::Test include QueryMethodsTest def model PostgresqlHstoreEvent end end
Version data entries
4 entries across 4 versions & 1 rubygems