Skip to content

Commit 0a1b73b

Browse files
committed
[+] Column Types - Support HSTORE column type
1 parent 25a9e9f commit 0a1b73b

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Change Log
22

33
## [Unreleased]
4+
### Added
5+
- Column Types - Support HSTORE column type.
46

57
## RELEASE 3.1.1 - 2019-07-18
68
### Fixed

app/services/forest_liana/schema_adapter.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ def get_type_for(column)
348348
type = 'Dateonly'
349349
when :integer, :float, :decimal
350350
type = 'Number'
351-
when :json, :jsonb
351+
when :json, :jsonb, :hstore
352352
type = 'Json'
353353
when :string, :text, :citext, :uuid
354354
type = 'String'

0 commit comments

Comments
 (0)