hyperstack-org/hyperstack

default for boolean dummy values not working

Open

#261 geöffnet am 3. Okt. 2019

Auf GitHub ansehen
 (0 Kommentare) (0 Reaktionen) (0 zugewiesene Personen)JavaScript (43 Forks)batch import
buggood first issue

Repository-Metriken

Stars
 (531 Stars)
PR-Merge-Metriken
 (Keine gemergten PRs in 30 T)

Beschreibung

for booleans, the following default values in the schema should be recognized as true, anything else is false:

'1', true or 1

i.e. in ReactiveRecord::Base::DummyValue

      def build_default_value_for_boolean
        @column_hash[:default] == '1' || @column_hash[:default] == true || @column_hash[:default] == 1
      end

Contributor Guide