hyperstack-org/hyperstack

default for boolean dummy values not working

Open

#261 ouverte le 3 oct. 2019

Voir sur GitHub
 (0 commentaires) (0 réactions) (0 assignés)JavaScript (43 forks)batch import
buggood first issue

Métriques du dépôt

Stars
 (531 stars)
Métriques de merge PR
 (Aucune PR mergée en 30 j)

Description

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

Guide contributeur